wordpress-无需插件启用主题自带邮件评论

浮夸小生。
2019-01-13 / 1 评论 / 362 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2020年12月19日,已超过1217天没有更新,若内容或图片失效,请留言反馈。

将以下代码添加在全局文件当中(functions.php)

//邮件提醒
add_action('phpmailer_init', 'mail_smtp');
function mail_smtp( $phpmailer ) {
$phpmailer->FromName = '半粒糖博客'; //发件人名称
$phpmailer->Host = 'smtp.qq.com'; //修改为你使用的邮箱SMTP服务器
$phpmailer->Port = 465; //SMTP端口
$phpmailer->Username = '1787158394@qq.com'; //邮箱账户
$phpmailer->Password = 'xxxxxxxxxxx'; //邮箱密码(此处填写QQ邮箱生成的授权码)
$phpmailer->From = '1787158394@qq.com'; //邮箱账户
$phpmailer->SMTPAuth = true;
$phpmailer->SMTPSecure = 'ssl'; //tls or ssl (port=25时->留空,465时->ssl)
$phpmailer->IsSMTP();

}

0

评论 (1)

取消
  1. 头像
    麻辣
    Windows 10 · Google Chrome

    如此好文章一定要留下名啊

    回复