本文介绍了PHP斯威夫特邮件:无法使用2种可能的SMTP认证设备认证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我送的PHP斯威夫特邮件邮件到该服务器:smtp.exchange.example.com是这样的:

When I send an email with the PHP Swift mailer to this server: smtp.exchange.example.com like this:

// 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);

我得到一个奇怪的错误回:

I get a strange error back:

无法使用用户名[email protected]服务器上进行身份验证使用2种可能的认证程序

我知道肯定登录,信息是正确的。

I know for sure that the login-info is correct.

推荐答案

自叹不如发送电子邮件再次工作。我们没有改变任何东西和主说,他们确实没有。我们认为一个服务器重启左右。令人奇怪的是:•

Strange enough sending emails works again. We did not change anything and the host say they did not either. We think a server restarts or so. It is strange :S

这篇关于PHP斯威夫特邮件:无法使用2种可能的SMTP认证设备认证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 19:42