欢迎来到资源库(www.zyku.net)

WordPress

当前位置:首页 > CMS教程 > WordPress > 评论

WordPress实现回复文章评论后发送邮件通知的功能

时间:2017-03-13|栏目:WordPress|点击:|我要投稿

很多时候,人们都希望在自己的评论被管理员回复后会收到通知。该函数的作用就是回复后自动邮件通知评论者。

把下面的代码加到wordpress的主题函数里面,然后修改下邮件帐号密码。

该函数是针对SAE平台的wordpress,非SAE平台不能使用,有需要的话留言我也会写出相应方法。

  //邮件回复
  function comment_mail_notify($comment_id) {
  define('MAIL_SMTP', 'smtp.exmail.qq.com'); //smtp服务器
  define('MAIL_PORT', 25); //smtp端口
  define('MAIL_SENDEMAIL', '123456789@qq.com'); //发送邮件帐号
  define('MAIL_PASSWORD', '123456'); //发送邮件密码
  $admin_notify = '1';
  $admin_email = get_bloginfo ('admin_email');
  $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 ? '1' : '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']));
  $to = trim(get_comment($parent_id)->comment_author_email);
  $subject = '你在' . get_option("blogname") . '回复被关注啦~';
  $message = '
  <div style="width: 502px; height: auto; margin-bottom: 50px; margin-left: auto; margin-right: auto; font-size: 13px; line-height: 14px;">
  <div style="width: 502px; margin-top: 10px;">
  <div style="font-size: 16px; color: #373737; text-align: center;">'.get_bloginfo("name").'</div>
  <div style="font-size: 15px; color: #f0f7eb; padding: 9px; margin-top: 20px; overflow: hidden; background: #299982; padding-left: 30px; padding-right: 40px;">你在 '. get_the_title($comment-&gt;comment_post_ID) .' 的评论有了回复:</div>
  </div>
  <div style="width: 420px; margin-top: 30px; padding: 0 40px 20px; border-left: 1px dashed #299982; border-right: 1px dashed #299982; color: rgba(0,0,0,0.7); background: #f9f9f9; overflow: hidden;">
  <div class="one origin" style="border: 1px solid #EEE; overflow: auto; padding: 10px; margin: 1em 0;"><span style="color: #299982;">'. trim(get_comment($parent_id)-&gt;comment_author) .'</span>:'. trim(get_comment($parent_id)-&gt;comment_content) .'</div>
  <div class="one reply" style="border: 1px solid #EEE; overflow: auto; padding: 10px; margin: 1em 0 1em 60px;"><span style="color: #299982;">'. trim($comment-&gt;comment_author) .'</span>:'. trim($comment-&gt;comment_content) .'</div>
  <p style="margin-bottom: 10px;">点击<a href="' . htmlspecialchars(get_comment_link($parent_id)) . ' style=">查看完整内容</a></p>
  <p style="margin-bottom: 10px;">(此邮件由系统发出,无需回复.)</p>
  </div>
  </div>
  ';
  $from = "From: \"" . get_option('blogname') . "\" <$wp_email>";
  $headers = "$from\nContent-Type: text/html; charset=" . get_option('blog_charset') . "\n";
  $mail = new SaeMail(); //对象
  $mail->setOpt(array( 'from' => 'admin@xtwind.com', 'to' => trim($to),//接收信箱
  'smtp_host' => MAIL_SMTP , //host
  'smtp_port' => MAIL_PORT, //port
  'smtp_username' => MAIL_SENDEMAIL,
  'smtp_password' => MAIL_PASSWORD,
  'subject' => $subject,
  'content' => $message,
  'content_type' => 'HTML'
  // 'tls' => true,
  //'charset' => 'gbk' ) );
  $ret = $mail->send();
  }
  }
  add_action('comment_post', 'comment_mail_notify');

(资源库 www.zyku.net)

关于我们 | 版权申明 | 寻求合作 |

重要申明:本站所有的文章、图片、评论等内容,均由网友发表或上传并维护或收集自网络,仅供个人学习交流使用,版权归原作者所有。

如有侵犯您的版权,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:95148658 | 邮箱:mb8#qq.com(#换成@)

苏ICP备2020066115号-1

本网站由提供CDN加速/云存储服务