PHP Swift 邮件程序:无法使用 2 个可能的身份验证器在 SMTP 上进行身份验证
2022-08-30 17:03:23
当我使用PHP Swift邮件程序向此服务器发送电子邮件时:smtp.exchange.example.com 如下所示:
// Load transport
$this->transport =
Swift_SmtpTransport::newInstance(
self::$config->hostname,
self::$config->port
)
->setUsername(self::$config->username)
->setPassword(self::$config->password)
;
// Load mailer
$this->mailer = Swift_Mailer::newInstance($this->transport);
// Initialize message
$this->message = Swift_Message::newInstance();
// From
$this->message->setFrom(self::$config->from);
// Set message etc. ...
// Send
$this->mailer->send($this->message);
我得到一个奇怪的错误回来:
无法使用 2 个可能的身份验证器在用户名为“user@example.com”的 SMTP 服务器上进行身份验证
我确定登录信息是正确的。