WordPress代码实现无需插件启用邮件评论
将以下代码添加至functions.php文件当中 //邮件提醒 add_action(‘phpmailer_…
将以下代码添加至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 = 'xxxxx@qq.com'; //邮箱账户
$phpmailer->Password = 'xxxxxxxxxxxxxxxx'; //授权码(此处填写QQ邮箱生成的授权码)
$phpmailer->From = 'xxxxxxx@qq.com'; //邮箱账户
$phpmailer->SMTPAuth = true;
$phpmailer->SMTPSecure = 'ssl'; //tls or ssl (port=25时->留空,465时->ssl)
$phpmailer->IsSMTP();
}
授权码获取截图
类别:WordPress技巧、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!