最近愈发觉得,评论被回复时候能有邮件提醒很重要,于是乎,今天就倒腾了下。
在网上找了下,相关的资料不少,于是乎最后选了个网上的代码,稍加修改使用。
将下面代码放在主题的functions.php中即可:
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 = '您在 [' . html_entity_decode(get_option("blogname"), ENT_QUOTES) . '] 的留言有了回复'; $message = '<div style="background-color:#eef2fa; border:1px solid #d8e3e8; color:#111; padding:0 15px; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px;"> <p>' . trim(get_comment($parent_id)->comment_author) . ', 您好!</p> <p>您曾在《' . get_the_title($comment->comment_post_ID) . '》的留言:<br />' . trim(get_comment($parent_id)->comment_content) . '</p> <p>' . trim($comment->comment_author) . ' 给您的回复:<br />' . trim($comment->comment_content) . '<br /></p> <p>您可以点击<a href="' . htmlspecialchars(get_comment_link($parent_id)) . '">查看回复的完整內容</a></p> <p>还要再度光临 <a href="' . get_option('home') . '">' . get_option('blogname') . '</a></p> <p>(此邮件由系统自动发送,请勿回复)</p> </div>'; $from = "From: "" . html_entity_decode(get_option('blogname'), ENT_QUOTES) . "" <$wp_email>"; $headers = "$fromnContent-Type: text/html; charset=" . get_option('blog_charset') . "n"; wp_mail( $to, $subject, $message, $headers ); } } add_action('comment_post', 'comment_mail_notify'); /* 自动加勾选栏 */ 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');
就是给评论comment_post加了个钩子,这样每次评论的时候就可以检测是否应该发送邮件而自动发送。
最后再给加上一个勾选框来让用户决定是否收到通知。
前段时间,邮件突然就收不到了,不知道是出了什么问题,无奈之下,就又折腾了一下,为了稳定起见,注册了一个sina邮箱,然后用SAE自带的MAIL服务来发送邮件,于是发送邮件部分代码修改如下:
if ($parent_id != '' && $spam_confirmed != 'spam' && $notify == '1') { $from = 'geekjayvic@sina.cn'; $to = trim(get_comment($parent_id)->comment_author_email); $subject = '您在 [' . html_entity_decode(get_option("blogname"), ENT_QUOTES) . '] 的留言有了回复'; $message = '<div style="background-color:#eef2fa; border:1px solid #d8e3e8; color:#111; padding:0 15px; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px;"> <p>' . trim(get_comment($parent_id)->comment_author) . ', 您好!</p> <p>您曾在《' . get_the_title($comment->comment_post_ID) . '》的留言:<br />' . trim(get_comment($parent_id)->comment_content) . '</p> <p>' . trim($comment->comment_author) . ' 给您的回复:<br />' . trim($comment->comment_content) . '<br /></p> <p>您可以点击<a href="' . htmlspecialchars(get_comment_link($parent_id)) . '">查看回复的完整內容</a></p> <p>还要再度光临 <a href="' . get_option('home') . '">' . get_option('blogname') . '</a></p> <p>(此邮件由系统自动发送,请勿回复)</p> </div>'; $options = array('from' => $from, 'to' => $to, 'smtp_host' => 'smtp.sina.cn', 'smtp_username' => $from, 'smtp_password' => 'password', 'subject' => $subject, 'content' => $message, 'content_type' => 'HTML', 'charset' => get_option('blog_charset'), 'nickname' => html_entity_decode(get_option('blogname'), ENT_QUOTES) ); $mail = new SaeMail(); $mail->setOpt($options); $ret = $mail->send(); if ($ret === false) { sae_debug($mail->errno() . ' => ' . $mail->errmsg()); } }