WordPress 有人回复时邮件通知的实现方法 SAE 移植版

跟版网(www.genban.org)提供回复,邮件通知,等网页设计素材资源,提供相关网页设计资源的教程和免费下载。跟版网,专业织梦网页设计模板资源站。。
1,先配置一下您的SMTP账户的用户名和密码。
2,将下面的内容粘贴到当前主题的 functions.php 中即可,注意别破坏了原来的结构就行。(或者直接建一个文件,将代码拷贝进去,然后在 functions.php 中引用该文件即可。)

代码如下:

<?php
/**
* Email Me With The Replay For SAE
*
* Usage:将此段代码粘贴到当前主题的 functions.php 文件中即可。
* 或者将此文件放进主题目录,在 functions.php 中包含此文件
*
* 基于 comment_mail_notify v1.0 by willin kan. http://kan.willin.org/?p=1295(已失效)
* changelist
* 2012-03-29
* version 0.1
*
* 2012-04-29
* version 0.2
* edit $subject to this code
* $subject = '您的评论 ' . mb_substr(strip_tags(get_comment($parent_id)->comment_content), 0, 10, 'utf-8') . ' 有了回应 - ' . get_option("blogname");
*
*
* @author IT不倒翁, willin kan
* @copyright (C) 2011,2012 Just Use It!
* @link yungbo.com
* @version 0.2
*/
function comment_mail_notify($comment_id) {
//换行标志
$lineBreak = " ";
//缩进标志
$tabBreak = " ";
$admin_notify = '1'; // are you willing to receive the email? 1 is yes.
$admin_email = get_bloginfo('admin_email'); // you can change $admin_email to your e-mail optionaly.
$comment = get_comment($comment_id);
$comment_author_email = trim($comment->comment_author_email);
$parent_id = $comment->comment_parent ? $comment->comment_parent : '';
global $wpdb;
if ($wpdb->query("Describe {$wpdb->comments} comment_mail_notify") == '')
$wpdb->query("ALTER TABLE {$wpdb->comments} ADD COLUMN comment_mail_notify TINYINT NOT NULL DEFAULT 0;");
if (($comment_author_email != $admin_email && isset($_POST['comment_mail_notify'])) || ($comment_author_email == $admin_email && $admin_notify == '1'))
$wpdb->query("UPDATE {$wpdb->comments} SET comment_mail_notify='1' WHERE comment_ID='$comment_id'");
$notify = $parent_id ? get_comment($parent_id)->comment_mail_notify : '0';
$spam_confirmed = $comment->comment_approved;
if ($parent_id != '' && $spam_confirmed != 'spam' && $notify == '1') {
$wp_email = 'no-reply@' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME'])); // e-mail
$to = trim(get_comment($parent_id)->comment_author_email);
$subject = '您的评论 ' . mb_substr(strip_tags(get_comment($parent_id)->comment_content), 0, 10, 'utf-8') . ' 有了回应 - ' . get_option("blogname");
//邮件主体内容
//估计新浪考虑到安全问题,全部用 htmlspecialchars() 过滤了,所以不要使用 html 标记
$message = '您好,' . trim(get_comment($parent_id)->comment_author) . $lineBreak;
$message .= '您曾在 ' . get_option("blogname") . ' 留言:' . $lineBreak;
$message .= $tabBreak . trim(get_comment($parent_id)->comment_content) . $lineBreak;
$message .= trim($comment->comment_author) . ' 回复了您:' . $lineBreak;
$message .= $tabBreak . trim($comment->comment_content) . $lineBreak;
$message .= '您可以点击 ' . get_comment_link($parent_id) . ' 查看具体情况' . $lineBreak;
$message .= $lineBreak;
$message .= '(系统邮件,请不要直接回复)' . $lineBreak;
$message .= get_option('blogname') . $lineBreak;
$message .= home_url() . $lineBreak;
/*SAE 配置位置*/
$saeTo = $to;
$saeSubject = $subject;
$saeMessage = $message;
$saeSMTPUser = '';//SMTP邮箱
$saeSMTPPass = '';//SMTP密码
$mail = new SaeMail();
$result = $mail->quickSend($saeTo, $saeSubject, $saeMessage, $saeSMTPUser, $saeSMTPPass);
// if ($result === false)
// var_dump($mail->errno(), $mail->errmsg());
}
}
add_action('comment_post', 'comment_mail_notify');
/* Auto checked */
function add_checkbox() {
echo '<input type="checkbox" name="comment_mail_notify" id="comment_mail_notify" value="comment_mail_notify" checked="checked" /><label for="comment_mail_notify">有人回复我时邮件通知我</label>';
}
add_action('comment_form', 'add_checkbox');

代码最近更新日期,2012-04-29
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

修改帝国CMS默认提示框样式为layui,修改文件:e/message/index.php link href="?=$public_r[newsurl]?hmb2019/css/layui.css" rel="stylesheet" type="text/css"div class="layui-container" div class="layui-card" style="width:400px;box-shadow: 1px 1px
上一篇、下一篇文章代码: ?php previous_post_link(%link,) ??php next_post_link(%link,) ? 该代码解析出来的代码大概如下: a href= rel=external nofollow rel=external nofollow /aa href= rel=external nofollow rel=external nofollow /a 通过 get_pr
WordPress目前在最近的版本中为所有需要新窗口打开的链接都自动添加了新的 noopener noreferrer 属性。noopener noreferrer 属性并不是新发布的标准,但 WordPress 4.7.4 版开始的编辑器默认都会添加该属性。新窗口打开超链接的属性 target=_blank 增加 rel=
用discuz搭建的论坛,后台默认地址是 域名加 admin.php,很多站长怕网站被黑客攻击,一般黑客会扫描admin文件,然后破解管理员账户登录后台,所以想修改后台的地址。直接修改 admin.php 名并放到其他文件夹里,访问后台用修改过的路径虽然能访问,但是会出错
phpcms的筛选功能,网上有各种版本,但是多多少少都会有点问题,不是很完美,下面我总结网上各种版本,加上自己的研究,得出一个算是比较全的一个资料,既可以分页,也可以分栏目! 第一步:后台添加字段 添加字段: 后台--内容--内容相关设置--模型管理--文
NAS已经把玩差不多半个月了,基本的download,DLNA,都已搞定。因为一直都是博客的忠实支持者,所以必须把自己的博客也搬到NAS上,老是跟大家都混在新浪上岂不是很没面子。于是开始购入域名,研究DDNS,找博客平台。很快锁定wordpress,看了别人建站效果,感