Laravel Gmail无法正常工作,“用户名和密码不被接受。了解更多...”

2022-08-30 19:21:48

当我尝试通过运行Laravel 4的网站发送电子邮件时,我得到这个异常:

{"error":{"type":"Swift_TransportException","message":"Expected response code 250 but got code \"535\", with message \"535-5.7.8 Username and Password not accepted. Learn more at\r\n535 5.7.8 http:\/\/support.google.com\/mail\/bin\/answer.py?answer=14257 y70sm14744455qgd.3 - gsmtp\r\n\"","file":"\/var\/www\/vendor\/swiftmailer\/swiftmailer\/lib\/classes\/Swift\/Transport\/AbstractSmtpTransport.php","line":386}}

这是我的邮件配置:

return array(
  'driver' => 'smtp',
  'host' => 'smtp.gmail.com',
  'port' => 465,
  'from' => array('address' => 'mymail@gmail.com', 'name' => 'myname'),
  'encryption' => 'ssl',
  'username' => 'mymail@gmail.com',
  'password' => 'lol',
  'sendmail' => '/usr/sbin/sendmail -bs',
  'pretend' => false,
);

我已经尝试了通过谷歌搜索此问题找到的禁用链接,但它没有区别。

有没有办法告诉谷歌“停止阻止这个IP,是我”?


答案 1

我尝试了同样的事情,并得到了同样的错误。所以我亲自检查了我的gmail帐户,我有一封来自Gmail本身的消息,让我知道他们已经阻止了对我的电子邮件帐户的访问尝试。

他们显示了一个选项,可以通过访问 https://www.google.com/settings/security/lesssecureapps 来禁用此安全设置。

如果您访问已登录到Gmail帐户的链接,事情实际上会更加直接。

警告

正如@kodfire所说:

2022 年 5 月 30 日,此设置将不再可用。

support.google.com/accounts?p=less-secure-apps&hl=en


答案 2

转到此链接并禁用解锁验证码 https://accounts.google.com/b/0/DisplayUnlockCaptcha


推荐