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';
}