代码实现评论邮件通知
in IT互联网 | 仅一条评论是由《Ajax comments 回应邮件通知》所改进的评论回应邮件通知 (Comment Mail Notify).
主要改进两个项目:
1. 所有内置嵌套模板都适用, 不只是用於 Ajax comments.
2. 管理者在後台回覆也可自动发邮件.
安装步骤:
1. 如果你用了上一版的 “Ajax comments 回应邮件通知”, 请先在 comments-ajax.php 删除上一版的代码.
2. 在下面三种方式, 选择你想用的代码, copy 到主题的 functions.php 的 区域内.
《评论回应邮件通知》的三种代码: (按下面的标题可直接滚下去)
一、有勾选栏, 由访客决定是否要回应邮件通知
二、无勾选栏, 由管理者决定在什麽条件下发邮件
三、所有回覆都发邮件
必须注意的是: 你的服务器一定要有 mail() 功能. 测试方式: 在登入页故意按下 ‘忘记密码’, 收到邮件就有 mail() 功能; 没收到邮件的可以下课了. 请先安装好 smtp 插件, 确定服务器可发信了再回来吧~
一、有勾选栏, 由访客决定是否要回应邮件通知:
(会在模板自动加勾选栏, 如果不想自动加, 可把後面一小段删除.)
/* comment_mail_notify v1.0 by willin kan. (有勾选栏, 由访客决定) */
function comment_mail_notify($comment_id) {
$admin_notify = '1'; // admin 要不要收回覆通知 ( '1'=要 ; '0'=不要 )
$admin_email = get_bloginfo ('admin_email'); // $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 : '';
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 发出点, 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('blogname') . "" <$wp_email>";
$headers = "$fromnContent-Type: text/html; charset=" . get_option('blog_charset') . "n";
wp_mail( $to, $subject, $message, $headers );
//echo 'mail to ', $to, '
' , $subject, $message; // for testing
}
}
add_action('comment_post', 'comment_mail_notify');
/* 自动加勾选栏 */
function add_checkbox() {
echo '';
}
add_action('comment_form', 'add_checkbox');
// -- END ----------------------------------------
二、无勾选栏, 由管理者决定在什么条件下发邮件:
/* comment_mail_notify v1.0 by willin kan. (无勾选栏) */
function comment_mail_notify($comment_id) {
$admin_email = get_bloginfo ('admin_email'); // $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 : '';
$to = $parent_id ? trim(get_comment($parent_id)->comment_author_email) : '';
$spam_confirmed = $comment->comment_approved;
if (($parent_id != '') && ($spam_confirmed != 'spam') && ($to != $admin_email) && ($comment_author_email == $admin_email)) {
/* 上面的判断式,决定发出邮件的必要条件:
($parent_id != '') && ($spam_confirmed != 'spam'): 回覆的, 而且不是 spam 才可发, 必需!!
($to != $admin_email) : 不发给 admin.
($comment_author_email == $admin_email) : 只有 admin 的回覆才可发.
可视个人需求修改以上条件.
*/
$wp_email = 'no-reply@' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME'])); // e-mail 发出点, no-reply 可改为可用的 e-mail.
$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('blogname') . "" <$wp_email>";
$headers = "$fromnContent-Type: text/html; charset=" . get_option('blog_charset') . "n";
wp_mail( $to, $subject, $message, $headers );
//echo 'mail to ', $to, '
' , $subject, $message; // for testing
}
}
add_action('comment_post', 'comment_mail_notify');
// -- END ----------------------------------------
三、所有回覆都发邮件:
(当然, 在底层的评论不发邮件, 回覆的才发)
/* 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('blogname') . "" <$wp_email>";
$headers = "$fromnContent-Type: text/html; charset=" . get_option('blog_charset') . "n";
wp_mail( $to, $subject, $message, $headers );
//echo 'mail to ', $to, '
' , $subject, $message; // for testing
}
}
add_action('comment_post', 'comment_mail_notify');
// -- END ----------------------------------------
其实以上三段代码都是同一个程式, 内容几乎完全相同, 只是怕有人不会改, 出错时又来找我发问, 所以放了三种写法供各位直接 copy.
感谢 万戈童鞋 帮忙测试, 我们试用了几天还没出问题, 本想试用两个星期再公布, 算一算时间刚好在过年後, 到时候我可能还在休假, 还是现在先发出来当作是送给各位的过年礼物吧! 新年快乐!
後记: 忘了加上 spam 检查, 幸亏万戈童鞋及时提醒, 谢谢万戈! (2/10 22:24 已更新)
◎2010/4/2 又发现这程式在评论分页的 get_comment_link() 有个 bug.
这 bug 对使用 comments 和 trackbacks/pingbacks 分离的情况才会出现, 没分离的是没影响.
当直接叫用 get_comment_link() 因为没经过 wp_list_comments(‘type=comment’) 函数, 它会以所有的评论作为分页对象. 所以 trackbacks/pingbacks 数量多的时候会让 cpage 多算了, 本来是 cpage=7 会成了 cpage=8, 所以点击邮件里的 “查看回应完整内容” 会找不到正确评论页面.
— 修正方式 —-
将以上的:
1
get_comment_link($parent_id)
改成:
1
get_comment_link($parent_id, array(‘type’ => ‘comment’))
加入的参数是让它选取 comment 数量计算就好.
评论式样有使用 comments 和 trackbacks/pingbacks 分离的童鞋, 请进行修改. 没用到的就不能改.
关键词: wordpress
支持支持哦,嘿嘿。;-)