- 时间:
; - 标签:
邮件代码
- 外观
- 编辑
- 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 发出点, no-reply 可改为可用的 e-mail.
$to = trim(get_comment($parent_id)->comment_author_email);
$subject = '您在 [' . get_option("blogname") . '] 的留言有了回复';
$message = '
<div style="background-color:#fff; border:1px solid #666666; color:#111;
-moz-border-radius:8px; -webkit-border-radius:8px; -khtml-border-radius:8px;
border-radius:8px; font-size:12px; width:702px; margin:0 auto; margin-top:10px;
font-family:微软雅黑, Arial;">
<div style="background:#666666; width:100%; height:60px; color:white;
-moz-border-radius:6px 6px 0 0; -webkit-border-radius:6px 6px 0 0;
-khtml-border-radius:6px 6px 0 0; border-radius:6px 6px 0 0; ">
<span style="height:60px; line-height:60px; margin-left:30px; font-size:16px;">
您在 <a style="text-decoration:none; color:#00bbff;font-weight:600;"
href="' . get_option('home') . '">' . get_option('blogname') . '
</a>的留言有回复啦!</span></div>
<div style="width:90%; margin:0 auto">
<p>' . trim(get_comment($parent_id)->comment_author) . ', 您好!</p>
<p>您在《' . get_option("blogname") . '》发表的留言:
<p style="background-color: #EEE;border: 1px solid #DDD;
padding: 15px;margin: 15px 0;">' . nl2br(get_comment($parent_id)->comment_content) . '</p>
<p>' . trim($comment->comment_author) . ' 给您的回复如下:
<p style="background-color: #EEE;border: 1px solid #DDD;padding: 15px;
margin: 15px 0;">' . nl2br($comment->comment_content) . '</p>
<p>您可以点击 <a style="text-decoration:none; color:#00bbff"
href="' . htmlspecialchars(get_comment_link($parent_id)) . '">查看回复的完整內容</a></p>
<p>欢迎再次光临 <a style="text-decoration:none; color:#00bbff"
href="' . get_option('home') . '">' . get_option('blogname') . '</a></p>
<p>(此邮件由系统自动发出, 请勿回复.)</p>
</div>
</div>';
$message = convert_smilies($message);
$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');
//SMTP邮箱设置
function mail_smtp( $phpmailer ){
$phpmailer->From = "www@ww.ws";//发件人地址
$phpmailer->FromName = "OK";//发件人昵称
$phpmailer->Host = "ssl://smtp.exmail.qq.com";//SMTP服务器地址
$phpmailer->Port = "465";
//SMTP邮件发送端口, 常用端口有:25、465、587, 具体联系邮件服务商
$phpmailer->SMTPSecure = "";
//SMTP加密方式(SSL/TLS)没有为空即可,
//具体联系邮件服务商, 以免设置错误, 无法正常发送邮件
$phpmailer->Username = "www@ww.ws";//邮箱帐号
$phpmailer->Password = "xxxxxx";//SMTP的授权码
$phpmailer->IsSMTP();
$phpmailer->SMTPAuth = true;//启用SMTPAuth服务
}
add_action('phpmailer_init','mail_smtp');
- 修改信息
- 搞定
- 注意事项:
- SMTP服务器地址-企业邮箱填:ssl://smtp.exmail.qq.com
- SMTP服务器地址-QQ邮箱填:ssl://smtp.qq.com
- SMTP的授权码-企业邮箱填:邮箱登录密码
- SMTP的授权码-QQ邮箱填:邮箱SMTP授权码
- SMTP邮件发送端口:我的企业邮箱和QQ邮箱全部填的465表示一切正常
- 想到再补充吧,有问题可以在下方留言...