当前位置:首页 > CMS教程 > WordPress > 列表

WordPress增加评论自动邮件通知博主的功能

发布:smiling 来源: PHP粉丝网  添加日期:2014-03-22 16:11:46 浏览: 评论:0 

由于自己比较懒不会经常上博客后台去看有没有朋友对文章有评论或有问题请教,于是想到一个比较好的解决办法,就是用用户主评论了我们就自动邮箱通过我,这样可以解决这个问题了.

方法一,windows,linux主机

根据自己的需要,选择一种自己需要的代码,添加在主题的 functions.php 文件的最后一个 ?> 前面即可,所有回复都发送邮件通知,默认所有填写了邮箱的评论都将发邮件提醒评论人,没有任何勾选设置,代码如下:

  1. /* comment_mail_notify v1.0 by willin kan. (所有回复都发邮件) */ 
  2. function comment_mail_notify($comment_id) { 
  3.   $comment = get_comment($comment_id); 
  4.   $parent_id = $comment->comment_parent ? $comment->comment_parent : ''
  5.   $spam_confirmed = $comment->comment_approved; 
  6.   if (($parent_id != '') && ($spam_confirmed != 'spam')) { 
  7.     $wp_email = 'no-reply@' . preg_replace('#^www.#'''strtolower($_SERVER['SERVER_NAME'])); //e-mail 发出点, no-reply 可改为可用的 e-mail. 
  8.     $to = trim(get_comment($parent_id)->comment_author_email); 
  9.     $subject = '您在 [' . get_option("blogname") . '] 的留言有了回复'
  10.     $message = ' 
  11.     <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;"
  12.       <p>' . trim(get_comment($parent_id)->comment_author) . ', 您好!</p> 
  13.       <p>您曾在《' . get_the_title($comment->comment_post_ID) . '》的留言:<br />' 
  14.        . trim(get_comment($parent_id)->comment_content) . '</p> 
  15.       <p>' . trim($comment->comment_author) . ' 给您的回复:<br />' 
  16.        . trim($comment->comment_content) . '<br /></p> 
  17.       <p>您可以点击 查看回复完整?热?lt;/p> 
  18.       <p>欢迎再度光临 ' . get_option('blogname') . '</p> 
  19.       <p>(此邮件由系统自动发送,请勿回复.)</p> 
  20.     </div>'; 
  21.       $from = "From: "" . get_option('blogname') . "" <$wp_email>"
  22.       $headers = "$from Content-Type: text/html; charset=" . get_option('blog_charset') . " "
  23.       wp_mail( $to$subject$message$headers ); 
  24.   } 
  25. add_action('comment_post''comment_mail_notify'); 
  26. // -- END ---------------------------------------- 

方法二,针对在SAE上的WordPress增加评论自动邮件通知功能,如果你是自己购买的虚拟主机/VPS之类的话就直接安装一个SMTP的邮件插件就可以了、但是如果你和我一样吧博客放在SAE上的话、就需要做一些修改才行了.

首先;我们需要修改functions.php文件

你需要把我下面的PHP代码复制黏贴到你主题的functions.php文件中的<?php …….?>之间,你可以通过SAE的 Editor也可以在本地修改好代码之后用SVN上传、推荐用SVN吧,代码如下:

  1. /* comment_mail_notify by http://www.111cn.net (所有回复都发邮件) */ 
  2. function comment_mail_notify($comment_id) { 
  3.   $comment = get_comment($comment_id); 
  4.   $parent_id = $comment->comment_parent ? $comment->comment_parent : ''
  5.   $spam_confirmed = $comment->comment_approved; 
  6.   if (($parent_id != '') && ($spam_confirmed != 'spam')) { 
  7.     $wp_email = 'no-reply@' . preg_replace('#^www.#'''strtolower($_SERVER['SERVER_NAME'])); //e-mail 发出点, no-reply 可改为可用的 e-mail. 
  8.     $to = trim(get_comment($parent_id)->comment_author_email); 
  9.     $subject = '您在 [' . get_option("blogname") . '] 的留言有了回复'
  10.     $message = ' 
  11.     <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;"
  12.       <p>' . trim(get_comment($parent_id)->comment_author) . ', 您好!</p> 
  13.       <p>您曾在《' . get_the_title($comment->comment_post_ID) . '》的留言:<br />' 
  14.        . trim(get_comment($parent_id)->comment_content) . '</p> 
  15.       <p>' . trim($comment->comment_author) . ' 给您的回复:<br />' 
  16.        . trim($comment->comment_content) . '<br /></p> 
  17.       <p>您可以点击 <a href="' . htmlspecialchars(get_comment_link($parent_id)) . '">查看回复完整?热?lt;/a></p> 
  18.       <p>欢迎再度光临 <a href="' . get_option('home') . '">' . get_option('blogname') . '</a></p> 
  19.       <p>(此邮件由系统自动发送,请勿回复.)</p> 
  20.     </div>'; 
  21.     $from = "From: "" . get_option('blogname') . "" <$wp_email>"
  22.     $headers = "$from Content-Type: text/html; charset=" . get_option('blog_charset') . " "
  23.     wp_mail( $to$subject$message$headers ); 
  24.     //echo 'mail to ', $to, '<br/> ' , $subject, $message;  
  25.   } 
  26. add_action('comment_post''comment_mail_notify'); 
  27. // -- END ---------------------------------------- 

接着,我们需要安装一个SMTP的插件,下载好Configure SMTP插件、通过SVN上传到SAE博客上登陆后台启用插件并开始配置、请仔细看下面的配置选项。

Send e-mail via GMail? 不用勾选

SMTP host:smtp.163.com,俺使用的伟大的163邮箱(推荐使用国内的邮箱,否则有可能收不到邮件)

SMTP port:25,一般SMTP服务器都是使用的这个端口

Secure connection prefix:留白、不用选

Use SMTPAuth? 必选

SMTP username:你的用户名,比如安的是hiadmin_email@163.com SMTP password:邮箱密码,123456789

Wordwrap length:留白

Enable debugging? 启用调试模式,不选

Sender e-mail:发送者邮箱,还写上面的hiadmin_email@163.com

Sender name:发送者的姓名,吧你希望显示的名称填上即可保存之后我们自己测试一把去

点击下面的 Send Test e-mail 按钮吧。

到此你的SAE上的wordpress博客在有评论的时候都会发送邮件给你,然后如果你在回复其他人的评论的时候也会有邮件过去,当然如果新用户注册的时候也会有邮件通知的.

Tags: WordPress 邮件 功能

分享到: