PHP Swift mailer: Failed to authenticate on SMTP using 2 possible authenticators(PHP Swift 邮件程序:无法使用 2 个可能的身份验证器在 SMTP 上进行身份验证)
问题描述
当我使用 PHP Swift 邮件程序向此服务器发送电子邮件时: 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:
无法使用 2 个可能的身份验证器在用户名user@example.com"的 SMTP 服务器上进行身份验证
Failed to authenticate on SMTP server with username "user@example.com" using 2 possible authenticators
我确定登录信息是正确的.
I know for sure that the login-info is correct.
推荐答案
足够奇怪的发送电子邮件再次起作用.我们没有改变任何东西,主人说他们也没有.我们认为服务器重新启动左右.很奇怪:S
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 Swift 邮件程序:无法使用 2 个可能的身份验证器在 SMTP 上进行身份验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP Swift 邮件程序:无法使用 2 个可能的身份验证器在 SMTP 上进行身份验证
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01