Title Image

Blog

系统采用SMTP发邮件

  |   Geek   |   No comment

13-3-2.sbw

为了系统采用SMTP发邮件 使用Configure SMTP插件.

设置之后不能发送, 因为使用qq邮箱. 需要修改wordpress源文件.wordpress\wp-includes\class-phpmailer.php

修改其中
在 class.phpmailer.php 中,将
function IsSMTP() {
$this->Mailer = ‘smtp’;
}

改成:
function IsSMTP() {
$this->Mailer = ‘SMTP’;
}

No Comments

Post A Comment