如何让WordPress实现评论回复邮件通知功能

如何让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 = '[email protected]' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME'])); //改为你的邮箱$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 = "$from\nContent-Type: text/html; charset=" . get_option('blog_charset') . "\n"; wp_mail( $to, $subject, $message, $headers ); } }add_action('comment_post', 'comment_mail_notify');

通过以上简单的步骤,就可以实现博客评论邮件通知啦,赶快试一下吧!

参考文档:

《WPJAM Basic 扩展:SMTP 邮件服务》

《WordPress实现评论回复邮件通知功能》

本文原文链接:如何让WordPress实现评论回复邮件通知功能

你可能感兴趣的:(如何让WordPress实现评论回复邮件通知功能)