最新消息:本站所有跳转向bbs.ykit.cn的附件将全面停止,附件已转移到https://www.qingsj.com

wordpress主机不支持smtp解决方案

wordpress教程 有客 1564浏览

不用插件添加代码就可以发送邮件

可以直接在functions.php里添加:
//smtp发送邮件功能
add_action(‘phpmailer_init’, ‘mail_smtp’);
function mail_smtp( $phpmailer ) {

$phpmailer->FromName = ‘发信名’;

$phpmailer->Host = ‘smtp.exmail.qq.com’;
$phpmailer->Port = 465;

$phpmailer->Username = ‘显示邮箱’;

$phpmailer->Password = ‘密码’;

$phpmailer->From = ‘发信邮箱’;

$phpmailer->SMTPAuth = true;

$phpmailer->SMTPSecure = ‘ssl’; //tls or ssl (port=25留空,465为ssl)
$phpmailer->IsSMTP();}

转载请注明:有客帮 » wordpress主机不支持smtp解决方案