PHPMailer发送邮件 SMTP Error: Could not authenticate 错误
phpmailer报错
SMTP Error: Could not authenticate
/var/log/maillog中报错
SASL LOGIN authentication failed: UGFzc3dvcmQ6
foxmail可以正常使用,但是phpmailer就不行
我的解决方式是:
class.phpmailer.php文件中将smtp改为SMTP,改之前我以为没戏,没想到还真行了
public function isSMTP()
{
// $this->Mailer = 'smtp';
$this->Mailer = 'SMTP';
}
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭