您的位置 首页 php

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

直接上代码,粘贴至主题文件夹function.php内,另外html标签内的样式代码可以根据自己的需要进行修改。

前提你的 WordPress 可以发送邮件,不能发送邮件可参考此文章: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 = 'admin@163.com' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME'])); //改为你的邮箱 
 $to =  trim (get_comment($parent_id)->comment_author_email); 
 $ subject  = '[' . get_option("blogname") . '] 您的留言有了新回复'; 
 $ message  = ' 
 <div style="width: 60%;margin: 0 auto"> 
 <div style="font-size: 28px;line-height: 28px;text-align: center;"><p>' . trim(get_comment($parent_id)->comment_author) . ', 您好!</p></div> 
 <div style="border-bottom: 1px solid #eee;padding-top: 10px;"> 
 <p style="color: #999;">您曾在《' . get_the_title($comment->comment_post_ID) . '》的留言:</p> 
 <p style="font-size: 18px;">' . trim(get_comment($parent_id)->comment_content) . '</p> 
 </div> 
 <div style=" border -bottom: 1px solid #eee;padding-top: 10px;"> 
 <p style="color: #999;">' . trim($comment->comment_author) . ' 给您的回复:</p> 
 <p style="font-size: 18px;">' . trim($comment->comment_content) . '</p>
 <p style="text-align: center;font-size: 12px; padding -bottom: 20px;"><a style="border: 1px solid #3297fb;color: #3297fb;padding: 7px 14px; text-decoration : none;-moz-border-radius: 4px;-webkit-border-radius: 4px;border-radius:4px;" href="'%20.%20esc_attr(get_comment_link($parent_id,%20array('type'%20=>%20'comment')))%20.%20'">点击查看</a></p> 
 </div> <div style="font-size: 12px;color: #999;text-align: center;"> 
 <p>此邮件由系统自动发送,请勿回复</p> 
 <p>© <a href="#34;%20style="color: #999;text-decoration: none;">' . get_option('blogname') . '</a></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 ); } } 
add_action('comment_post', 'comment_mail_notify'); 

文章来源:智云一二三科技

文章标题:WordPress实现评论回复邮件通知功能

文章地址:https://www.zhihuclub.com/152598.shtml

关于作者: 智云科技

热门文章

网站地图