如何让WordPress实现评论回复邮件通知功能
我的wordpress博客已经很久不能用邮件通知我有新评论了,通过搜索终于找到了实现方法。我把我用到的方法列出来,仅供参考:
1、博客安装wpjam插件,激活
2、依次点击wpjam-扩展管理-勾选SMTP发信
3、发信设置,这个过程参考水煮鱼的教程《WPJAM Basic 扩展:SMTP 邮件服务》
4、设置无误后,添加以下代码到你的主题文件function.php内,我添加到最后一行,亲测可行(记得把代码中的邮箱地址修改成上面你设置过的邮箱地址),代码来源:《WordPress实现评论回复邮件通知功能》
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 = 'admin@163.com' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME'])); //改为你的邮箱$to = trim(get_comment($parent_id)->comment_author_email);$subject = '[' . get_option("blogname") . '] 您的留言有了新回复';$message = '<div style="width: 60%;margin: 0 auto"><div style="font-size: 28px;line-height: 28px;text-align: center;"><p>' . trim(get_comment($parent_id)->comment_author) . ', 您好!</p></div><div style="border-bottom: 1px solid #eee;padding-top: 10px;"><p style="color: #999;">您曾在《' . get_the_title($comment->comment_post_ID) . '》的留言:</p><p style="font-size: 18px;">' . trim(get_comment($parent_id)->comment_content) . '</p></div><div style="border-bottom: 1px solid #eee;padding-top: 10px;"><p style="color: #999;">' . trim($comment->comment_author) . ' 给您的回复:</p><p style="font-size: 18px;">' . trim($comment->comment_content) . '</p><p style="text-align: center;font-size: 12px;padding-bottom: 20px;"><a style="border: 1px solid #3297fb;color: #3297fb;padding: 7px 14px;text-decoration: none;-moz-border-radius: 4px;-webkit-border-radius: 4px;border-radius:4px;" href="' . esc_attr(get_comment_link($parent_id, array('type' => 'comment'))) . '">点击查看</a></p></div> <div style="font-size: 12px;color: #999;text-align: center;"><p>此邮件由系统自动发送,请勿回复</p><p>© <a href="http://www.newpm.net" style="color: #999;text-decoration: none;">' . get_option('blogname') . '</a></p></div></div>';$from = "From: \"" . get_option('blogname') . "\" <$wp_email>";$headers = "$from\nContent-Type: text/html; charset=" . get_option('blog_charset') . "\n"; wp_mail( $to, $subject, $message, $headers ); } }add_action('comment_post', 'comment_mail_notify');
通过以上简单的步骤,就可以实现博客评论邮件通知啦,赶快试一下吧!
参考文档:
本文原文链接:如何让WordPress实现评论回复邮件通知功能