作者:蔡志哲皇宇 | 来源:互联网 | 2014-11-19 16:54
评论回复后,自动发一封邮件提醒评论人,是提高用户体验的一大举措。倡萌一直都在使用WillinKan大师的评论回复邮件提醒通知代码,相信很多人也在使用,如果你还没有使用,不妨试试。根据自己的需要,选择一种自己需要的代码,添加在主题的functions.php或者pluggable.php(推荐)文件的最后一
评论回复后,自动发一封邮件提醒评论人,是提高用户体验的一大举措。倡萌一直都在使用Willin Kan大师的评论回复邮件提醒通知代码,相信很多人也在使用,如果你还没有使用,不妨试试。
根据自己的需要,选择一种自己需要的代码,添加在主题的 functions.php 或者 pluggable.php(推荐)
文件的 最后一个 ?> 前面即可:
方法一:所有回复都发送邮件通知
默认所有填写了邮箱的评论都将发邮件提醒评论人,没有任何勾选设置。
/* comment_mail_notify v1.0 by willin kan. (所有回复都发邮件) */
function comment_mail_notify($comment_id) {
$comment = get_comment($comment_id);
$parent_id = $comment->comment_parent ? $comment->comment_parent : '';
$spam_cOnfirmed= $comment->comment_approved;
if (($parent_id != '') && ($spam_confirmed != 'spam')) {
$wp_email = 'no-reply@' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME'])); //e-mail 发出点, no-reply 可改为可用的 e-mail.
$to = trim(get_comment($parent_id)->comment_author_email);
$subject = '您在 [' . get_option("blogname") . '] 的留言有了回复';
$message = '
' . trim(get_comment($parent_id)->comment_author) . ', 您好!
您曾在《' . get_the_title($comment->comment_post_ID) . '》的留言:
'
. trim(get_comment($parent_id)->comment_content) . '
' . trim($comment->comment_author) . ' 给您的回复:
'
. trim($comment->comment_content) . '
您可以点击 查看回复完整內容
欢迎再度光临 ' . get_option('blogname') . '
(此邮件由系统自动发送,请勿回复.)
';
$from = "From: \"" . get_option(&#39;blogname&#39;) . "\" <$wp_email>";
$headers = "$from\nContent-Type: text/html; charset=" . get_option(&#39;blog_charset&#39;) . "\n";
wp_mail( $to, $subject, $message, $headers );
}
}
add_action(&#39;comment_post&#39;, &#39;comment_mail_notify&#39;);
// -- END ----------------------------------------
方法二:让访客自己选择是否邮件通知
在评论框下方显示一个勾选框,让评论人自己决定是否接收邮件通知。
/* 开始*/
function comment_mail_notify($comment_id) {
$admin_notify = &#39;1&#39;; // admin 要不要收回复通知 ( &#39;1&#39;=要 ; &#39;0&#39;=不要 )
$admin_email = get_bloginfo (&#39;admin_email&#39;); // $admin_email 可改为你指定的 e-mail.
$comment = get_comment($comment_id);
$comment_author_email = trim($comment->comment_author_email);
$parent_id = $comment->comment_parent ? $comment->comment_parent : &#39;&#39;;
global $wpdb;
if ($wpdb->query("Describe {$wpdb->comments} comment_mail_notify") == &#39;&#39;)
$wpdb->query("ALTER TABLE {$wpdb->comments} ADD COLUMN comment_mail_notify TINYINT NOT NULL DEFAULT 0;");
if (($comment_author_email != $admin_email && isset($_POST[&#39;comment_mail_notify&#39;])) || ($comment_author_email == $admin_email && $admin_notify == &#39;1&#39;))
$wpdb->query("UPDATE {$wpdb->comments} SET comment_mail_notify=&#39;1&#39; WHERE comment_ID=&#39;$comment_id&#39;");
$notify = $parent_id ? get_comment($parent_id)->comment_mail_notify : &#39;0&#39;;
$spam_cOnfirmed= $comment->comment_approved;
if ($parent_id != &#39;&#39; && $spam_confirmed != &#39;spam&#39; && $notify == &#39;1&#39;) {
$wp_email = &#39;no-reply@&#39; . preg_replace(&#39;#^www.#&#39;, &#39;&#39;, strtolower($_SERVER[&#39;SERVER_NAME&#39;])); // e-mail 发出点, no-reply 可改为可用的 e-mail.
$to = trim(get_comment($parent_id)->comment_author_email);
$subject = &#39;您在 [&#39; . get_option("blogname") . &#39;] 的留言有了回复&#39;;
$message = &#39;
&#39; . trim(get_comment($parent_id)->comment_author) . &#39;, 您好!
您曾在《&#39; . get_the_title($comment->comment_post_ID) . &#39;》的留言:
&#39;
. trim(get_comment($parent_id)->comment_content) . &#39;
&#39; . trim($comment->comment_author) . &#39; 给您的回复:
&#39;
. trim($comment->comment_content) . &#39;
您可以点击查看回复的完整內容
还要再度光临 &#39; . get_option(&#39;blogname&#39;) . &#39;
(此邮件由系统自动发送,请勿回复.)
&#39;;
$from = "From: \"" . get_option(&#39;blogname&#39;) . "\" <$wp_email>";
$headers = "$from\nContent-Type: text/html; charset=" . get_option(&#39;blog_charset&#39;) . "\n";
wp_mail( $to, $subject, $message, $headers );
}
}
add_action(&#39;comment_post&#39;, &#39;comment_mail_notify&#39;);
/* 自动加勾选栏 */
function add_checkbox() {
echo &#39;&#39;;
}
add_action(&#39;comment_form&#39;, &#39;add_checkbox&#39;);
方法三:让博客管理员决定什么情况下发邮件
你可以根据自己的需求,配置下面代码(看代码注释),决定什么情况才发邮件。
/* comment_mail_notify v1.0 by willin kan. (无勾选栏) */
function comment_mail_notify($comment_id) {
$admin_email = get_bloginfo (&#39;admin_email&#39;); // $admin_email 可改为你指定的 e-mail.
$comment = get_comment($comment_id);
$comment_author_email = trim($comment->comment_author_email);
$parent_id = $comment->comment_parent ? $comment->comment_parent : &#39;&#39;;
$to = $parent_id ? trim(get_comment($parent_id)->comment_author_email) : &#39;&#39;;
$spam_cOnfirmed= $comment->comment_approved;
if (($parent_id != &#39;&#39;) && ($spam_confirmed != &#39;spam&#39;) && ($to != $admin_email) && ($comment_author_email == $admin_email)) {
/* 上面的判断式,决定发出邮件的必要条件:
($parent_id != &#39;&#39;) && ($spam_confirmed != &#39;spam&#39;): 回复的, 而且不是 spam 才可发, 必需!!
($to != $admin_email) : 不发给 admin.
($comment_author_email == $admin_email) : 只有 admin 的回复才可发.
可视个人需修改上面的条件.
*/
$wp_email = &#39;no-reply@&#39; . preg_replace(&#39;#^www.#&#39;, &#39;&#39;, strtolower($_SERVER[&#39;SERVER_NAME&#39;])); // e-mail 发出点, no-reply 可改为可用的 e-mail.
$subject = &#39;您在 [&#39; . get_option("blogname") . &#39;] 的留言有了回复&#39;;
$message = &#39;
&#39; . trim(get_comment($parent_id)->comment_author) . &#39;, 您好!
您曾在《&#39; . get_the_title($comment->comment_post_ID) . &#39;》的留言:
&#39;
. trim(get_comment($parent_id)->comment_content) . &#39;
&#39; . trim($comment->comment_author) . &#39; 给您的回复:
&#39;
. trim($comment->comment_content) . &#39;
您可以点击 查看回复的完整內容
还要再度光临 &#39; . get_option(&#39;blogname&#39;) . &#39;
(此邮件由系统自动发送,请勿回复.)
&#39;;
$from = "From: \"" . get_option(&#39;blogname&#39;) . "\" <$wp_email>";
$headers = "$from\nContent-Type: text/html; charset=" . get_option(&#39;blog_charset&#39;) . "\n";
wp_mail( $to, $subject, $message, $headers );
}
}
add_action(&#39;comment_post&#39;, &#39;comment_mail_notify&#39;);
// -- END ----------------------------------------
方法四:支持嵌套和@用户方式的评论提醒
此方法转载自zww.me,这版本的评论回复通知是支持嵌套和@用户方式的。有什么问题,请到作者页面反馈。
/* 邮件通知 by Qiqiboy */
function comment_mail_notify($comment_id) {
$comment = get_comment($comment_id);//根据id获取这条评论相关数据
$cOntent=$comment->comment_content;
//对评论内容进行匹配
$match_count=preg_match_all(&#39;/
备注说明
发送邮件,需要主机支持 mail() 函数,如果你发现没办法收到邮件,可以询问你的主机商。由于每个人的主机环境不一样,有些朋友在添加这个功能的时候,总是不能成功,这时候,你可以试试 SMTP 发送邮件的方式。