无法使用 2 个可能的身份验证器使用用户名在 SMTP 服务器上进行身份验证

Failed to authenticate on SMTP server with username using 2 possible authenticators

我已将 gmail SMTP 服务器配置为发送电子邮件。帐户安全性较低的应用已开启,还启用了 Recapture 功能。这是 mail.php 配置。

此代码在 hostgator 服务器上运行良好。但是我们有另一台服务器,邮件不是从该服务器发送的。我现在应该怎么办?

错误图片

http://screencast.com/t/BSCurEEubPJV

return array(    
    'driver' => 'smtp',
    'host' => 'smtp.gmail.com',
    'port' => 587,
    'from' => array('address' => 'xxx@gmail.com', 'name' => 'xxxxTeam'),
    'encryption' => 'tls',
    'username' => 'xxx@gmail.com',
    'password' => 'xx@123',    
    'sendmail' => '/usr/sbin/sendmail -bs',
    'pretend' => false,
);

我遇到了同样的问题。终于发现我的服务器IP地址被列入了黑名单。 请使用此 link 检查您的 IP 地址。

Link : https://mxtoolbox.com/blacklists.aspx

如果它被列入黑名单,请通过他们提供的 link 发送 re-list 请求。就这样

谢谢