前言
博客评论如果有了回复通过邮箱提醒,可以增加用户的体验,这里我们通过简单的代码实现这个功能。
正文
实现博客的评论邮箱回复其实很简单,有一个能够正常工作的wp_mail()函数即可,通过wordpress使用的是mail(),但是这个函数是使用wordpress原生的邮箱系统去发邮箱,一般都发不出去,所以我们这里利用SMTP的方式来发送邮件。
实现效果:
设置SMTP需要插件,类似的可以设置SMTP的插件即可,Easy WP SMTP、WP Mail SMTP by WPForms、SMTP Mail等都可以。
但要注意《WP Mail SMTP by WPForms》这个插件在配置中有点小问题,一会说明。
我们一般填写这些信息
- 发件人地址 -> 你用来发送邮件的邮箱地址
发件人昵称 -> 用于显示发件人
SMTP服务器地址 -> 可以到邮箱的客户端设置中找到(例如163邮箱:smtp.163.com)
SMTP加密方式 -> 根据邮箱自行设定
SMTP端口 -> 同上,一般ssl端口号为465;普通端口25
SMTP认证 -> YES
认证用户名 -> 邮箱地址
认证密码 -> 邮箱登录密码,一般为生成的专门为客户端登录的密码
填写完测试通过后,接下来在function.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'])); $to = trim(get_comment($parent_id)->comment_author_email); $subject = '[通知]您的留言有了新的回复'; $message = ' <div style="background:#ececec;width: 100%;padding: 50px 0;text-align:center;"> <div style="background:#fff;width:750px;text-align:left;position:relative;margin:0 auto;font-size:14px;line-height:1.5;"> <div style="zoom:1;padding:25px 40px;background:#518bcb; border-bottom:1px solid #467ec3;"> <h1 style="color:#fff; font-size:25px;line-height:30px; margin:0;"><a href="' . get_option('home') . '" style="text-decoration: none;color: #FFF;">' . htmlspecialchars_decode(get_option('blogname'), ENT_QUOTES) . '</a></h1> </div> <div style="padding:35px 40px 30px;"> <h2 style="font-size:18px;margin:5px 0;">Hi ' . trim(get_comment($parent_id)->comment_author) . ':</h2> <p style="color:#313131;line-height:20px;font-size:15px;margin:20px 0;">您有一条留言有了新的回复,摘要信息请见下表。</p> <table cellspacing="0" style="font-size:14px;text-align:center;border:1px solid #ccc;table-layout:fixed;width:500px;"> <thead> <tr> <th style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:normal;color:#a0a0a0;background:#eee;border-color:#dfdfdf;" width="235px;">原文</th> <th style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:normal;color:#a0a0a0;background:#eee;border-color:#dfdfdf;" width="235px;">回复</th> <th style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:normal;color:#a0a0a0;background:#eee;border-color:#dfdfdf;" width="100px;">作者</th> <th style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:normal;color:#a0a0a0;background:#eee;border-color:#dfdfdf;" width="90px;" >操作</th> </tr> </thead> <tbody> <tr> <td style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">' . trim(get_comment($parent_id)->comment_content) . '</td> <td style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">'. trim($comment->comment_content) . '</td> <td style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">' . trim($comment->comment_author) . '</td> <td style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;"><a href="'.get_comment_link( $comment->comment_ID ).'" style="color:#1E5494;text-decoration:none;vertical-align:middle;" target="_blank">查看回复</a></td> </tr> </tbody> </table> <br> <div style="font-size:13px;color:#a0a0a0;padding-top:10px">该邮件由系统自动发出,如果不是您本人操作,请忽略此邮件。</div> <div class="qmSysSign" style="padding-top:20px;font-size:12px;color:#a0a0a0;"> <p style="color:#a0a0a0;line-height:18px;font-size:12px;margin:5px 0;">' . htmlspecialchars_decode(get_option('blogname'), ENT_QUOTES) . '</p> <p style="color:#a0a0a0;line-height:18px;font-size:12px;margin:5px 0;"><span style="border-bottom:1px dashed #ccc;" t="5" times="">' . date("Y年m月d日",time()) . '</span></p> </div> </div> </div> </div>'; $from = "From: \"" . htmlspecialchars_decode(get_option('blogname'), ENT_QUOTES) . "\" <$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');
设置完即可实现该功能。
注意的地方
首先检查自己的服务器是否支持mail()函数,如果不支持是无法实现上述功能的。
另外上面的代码中,发送邮箱函数为wp_mail( $to, $subject, $message,$headers);,但是在WP Mail SMTP by WPForms这个插件中实现的wp_mail函数没有第四个headers参数,写成wp_mail( $to, $subject, $message);也是可以用的,但是发送的邮箱没有格式,是这种效果:
<div style="background:#ececec;width: 100%;padding: 50px 0;text-align:center;"> <div style="background:#fff;width:750px;text-align:left;position:relative;margin:0 auto;font-size:14px;line-height:1.5;"> <div style="zoom:1;padding:25px 40px;background:#518bcb; border-bottom:1px solid #467ec3;"> <h1 style="color:#fff; font-size:25px;line-height:30px; margin:0;"><a href="https://oldpan.me" style="text-decoration: none;color: #FFF;">Oldpan的个人博客</a></h1> </div> <div style="padding:35px 40px 30px;"> <h2 style="font-size:18px;margin:5px 0;">Hi 大学第:</h2> <p style="color:#313131;line-height:20px;font-size:15px;margin:20px 0;">您有一条留言有了新的回复,摘要信息请见下表。</p> <table cellspacing="0" style="font-size:14px;text-align:center;border:1px solid #ccc;table-layout:fixed;width:500px;"> <thead> <tr> <th style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:normal;color:#a0a0a0;background:#eee;border-color:#dfdfdf;" width="235px;">原文</th> <th style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:normal;color:#a0a0a0;background:#eee;border-color:#dfdfdf;" width="235px;">回复</th> <th style="padding:5px 0;text-indent:8px;border:1px solid #eee;border-width:0 1px 1px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:normal;color:#a0a0a0;background:#eee;border-color:#dfdfdf;" width ...
感谢分享,谢谢站长!!@天天下载