[教程]一站式快捷接收博客评论消息

图片[1]-[教程]一站式快捷接收博客评论消息-月宅酱的博客


首先来说这篇文章主要的内容:当有人评论自己博客后,能在第一时间得知消息、回复评论等等情况。接下来用月宅目前的通信手法来完成这篇教程。

目录:

准备工作、说明、教程、结果


准备工作

  • 1.拥有 Yomail客户端,并且绑定过来(月宅绑定的@outlook.com)
  • 2.打开QQ 邮箱SMTP
  • 3.WP插件:easy WP SMTP
  • 4.开启评论通知函数

说明

使用QQ邮箱我已经在以前说过,插件教程与说明:传送门{教程}如何让自己的邮件回复不进”垃圾箱”。如果你用自己域名发信,那么百分之99几率会被一些邮箱系统放进垃圾箱,从而得不到及时的通知消息。

除了电脑端下载Yomail外,你还需要在手机上也下载,百度一下Yomail将有下载地址。兼IOS Android PC MAC等 。


教程

第二点和第三点在说明的传送门有教程,就不重复,这里说下把回复通知样式打开,在functions.php文件中 加入

//评论回复邮件
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 = 'no-reply@' . preg_replace('#^www\.#', '', strtolower($_SERVER['SERVER_NAME']));//发件人e-mail地址
$to = trim(get_comment($parent_id)->comment_author_email);
$subject = '您在 [' . get_option("blogname") . '] 的留言有了回应';
$message = '<div style="border-right:#666666 1px solid;border-radius:8px;color:#111;font-size:12px;width:702px;border-bottom:#666666 1px solid;font-family:微软雅黑,arial;margin:10px auto 0px;border-top:#666666 1px solid;border-left:#666666 1px solid"><div class="adM">
</div><div style="width:100%;background:#666666;min-height:60px;color:white;border-radius:6px 6px 0 0"><span style="line-height:60px;min-height:60px;margin-left:30px;font-size:12px">您在<a style="color:#00bbff;font-weight:600;text-decoration:none" href="' . get_option('home') . '" target="_blank">' . get_option('blogname') . '</a> 上的留言有回复啦!</span> </div>
<div style="margin:0px auto;width:90%">
<p>' . trim(get_comment($parent_id)->comment_author) . ', 您好!</p>
<p>您于' . trim(get_comment($parent_id)->comment_date) . ' 在文章《' . get_the_title($comment->comment_post_ID) . '》上发表评论: </p>
<p style="border-bottom:#ddd 1px solid;border-left:#ddd 1px solid;padding-bottom:20px;background-color:#eee;margin:15px 0px;padding-left:20px;padding-right:20px;border-top:#ddd 1px solid;border-right:#ddd 1px solid;padding-top:20px">' . nl2br(get_comment($parent_id)->comment_content) . '</p>
<p>' . trim($comment->comment_author) . ' 于' . trim($comment->comment_date) . ' 给您的回复如下: </p>
<p style="border-bottom:#ddd 1px solid;border-left:#ddd 1px solid;padding-bottom:20px;background-color:#eee;margin:15px 0px;padding-left:20px;padding-right:20px;border-top:#ddd 1px solid;border-right:#ddd 1px solid;padding-top:20px">' . nl2br($comment->comment_content) . '</p>
<p>您可以点击 <a style="color:#00bbff;text-decoration:none" href="' . htmlspecialchars(get_comment_link($parent_id)) . '" target="_blank">查看回复的完整內容</a></p>
<p>感谢你对 <a style="color:#00bbff;text-decoration:none" href="' . get_option('home') . '" target="_blank">' . get_option('blogname') . '</a> 的关注,如您有任何疑问,欢迎在博客留言,我会一一解答</p><p>(此邮件由系统自动发出,请勿回复。)</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 );
//echo 'mail to ', $to, '<br/> ' , $subject, $message; // for testing
}
}
add_action('comment_post', 'comment_mail_notify');

这只是默认样式,如果自己喜欢折腾,那就自定义去。

结果预览

如果开机启动Yomail客户端,当博客有登录、回复消息的时候,右下角会有弹窗提示

图片[2]-[教程]一站式快捷接收博客评论消息-月宅酱的博客

在手机APP上则是这样,非常的方便快捷!

图片[3]-[教程]一站式快捷接收博客评论消息-月宅酱的博客

以上就是月宅目前正在用的通讯啦。(更好的:WordPress客户端,不过对于我不适应了)

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 共10条
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片
    • 头像雨哥0
    • 头像某昴0
    • 头像小飞熊0
    • 头像李伟个站0
    • 头像c0smxsec0
    • 头像情醉中国风0
    • 月宅的头像-月宅酱的博客月宅等级-LV1-月宅酱的博客作者0