php Laravel SwiftMailer:预期响应代码为 250,但得到代码“530”,消息为“530-5.5.1 Authentication Required

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/37469770/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-26 01:15:07  来源:igfitidea点击:

Laravel SwiftMailer : Expected response code 250 but got code "530", with message "530-5.5.1 Authentication Required

phplaravellaravel-5.2swiftmailer

提问by Gammer

I am using laravel 5.2, And the using Swift Mailer for password resetting. I have 2-step verification on my gmail..

我正在使用 laravel 5.2,并使用 Swift Mailer 进行密码重置。 我的 gmail 有两步验证。.

As the google help says :

正如谷歌帮助所说:



If you've turned on 2-Step Verification for your account, you might need to enter an App password instead of your regular password.

如果您为自己的帐户启用了两步验证,则可能需要输入应用密码而不是常规密码。



I have the following settings on mail.php:

我有以下设置mail.php

return [
    'driver' => env('MAIL_DRIVER', 'smtp'),
    'host' => env('MAIL_HOST', 'smtp.gmail.com'),
    'port' => env('MAIL_PORT', 465),
    'from' => ['address' => '[email protected]', 'name' => 'Shafee'],
    'encryption' => env('MAIL_ENCRYPTION', 'ssl'),
    'username' => env('[email protected]'),
    'password' => env('MY_Gmail_API_KEY'),
    'sendmail' => '/usr/sbin/sendmail -bs',
    'pretend' => env('MAIL_PRETEND', false),

];

On the .envi have :

.env我有:

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
[email protected]
MAIL_PASSWORD=MY_Gmail_API_KEY
MAIL_ENCRYPTION=ssl

The following error comes up :

出现以下错误:

Swift_TransportException in AbstractSmtpTransport.php line 383:

Expected response code 250 but got code "530", with message "530-5.5.1 Authentication Required. 

Learn more at
530 5.5.1 https://support.google.com/mail/answer/14257 w10sm15831823wjk.18 - gsmtp
"

采纳答案by Rifki

Try to turn on "less secure apps" of your account on this page. Read this google answer.

尝试在此页面上打开您帐户的“安全性较低的应用程序” 。阅读这个谷歌答案

回答by Laravel User

Use tls instead of ssl and use port 587.

使用 tls 而不是 ssl 并使用端口 587。

Use key or paasword.

使用密钥或密码。

Or Please run php artisan config:cache

或者请运行 php artisan config:cache

Or Try to turn on "less secure apps" of your account on this page.

或者尝试在此页面上打开您帐户的“安全性较低的应用程序”。

回答by shashikant parmar

Follow this file......

按照这个文件......

Change "Username" => env('[email protected]')to "Username" => '[email protected]';

“用户名”=> env('[email protected]')更改为“用户名”=> '[email protected]';

Same as Password...

和密码一样...

return [

返回 [

/*
|--------------------------------------------------------------------------
| Mail Driver
|--------------------------------------------------------------------------
|
| Laravel supports both SMTP and PHP's "mail" function as drivers for the
| sending of e-mail. You may specify which one you're using throughout
| your application here. By default, Laravel is setup for SMTP mail.
|
| Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill",
|            "ses", "sparkpost", "log"
|
*/

'driver' => env('MAIL_DRIVER', 'smtp'),

/*
|--------------------------------------------------------------------------
| SMTP Host Address
|--------------------------------------------------------------------------
|
| Here you may provide the host address of the SMTP server used by your
| applications. A default option is provided that is compatible with
| the Mailgun mail service which will provide reliable deliveries.
|
*/

'host' => env('MAIL_HOST', 'smtp.gmail.com'),

/*
|--------------------------------------------------------------------------
| SMTP Host Port
|--------------------------------------------------------------------------
|
| This is the SMTP port used by your application to deliver e-mails to
| users of the application. Like the host we have set this value to
| stay compatible with the Mailgun e-mail application by default.
|
*/

'port' => env('MAIL_PORT', 587),

/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
| You may wish for all e-mails sent by your application to be sent from
| the same address. Here, you may specify a name and address that is
| used globally for all e-mails that are sent by your application.
|
*/

'from' => ['address' => '[email protected]', 'name' => 'shashikant parmar111'],

/*
|--------------------------------------------------------------------------
| E-Mail Encryption Protocol
|--------------------------------------------------------------------------
|
| Here you may specify the encryption protocol that should be used when
| the application send e-mail messages. A sensible default using the
| transport layer security protocol should provide great security.
|
*/

'encryption' => env('MAIL_ENCRYPTION', 'tls'),

/*
|--------------------------------------------------------------------------
| SMTP Server Username
|--------------------------------------------------------------------------
|
| If your SMTP server requires a username for authentication, you should
| set it here. This will get used to authenticate with your server on
| connection. You may also set the "password" value below this one.
|
*/

**'username' => '[email protected]',**

/*
|--------------------------------------------------------------------------
| SMTP Server Password
|--------------------------------------------------------------------------
|
| Here you may set the password required by your SMTP server to send out
| messages from your application. This will be given to the server on
| connection so that the application will be able to send messages.
|
*/

**'password' => '********',**

/*
|--------------------------------------------------------------------------
| Sendmail System Path
|--------------------------------------------------------------------------
|
| When using the "sendmail" driver to send e-mails, we will need to know
| the path to where Sendmail lives on this server. A default path has
| been provided here, which will work well on most of your systems.
|
*/

'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => FALSE,

];

];

回答by Joynal Abedin

You can try following steps

您可以尝试以下步骤

  1. Turn on "less secure apps" for your account here.
  2. Try by setting your mail encryption to tlsand port to 587in your .envfile
    MAIL_HOST=smtp.gmail.com
    MAIL_PORT=587
    [email protected]
    MAIL_PASSWORD=your-password
    MAIL_ENCRYPTION=tls
  3. Then run php artisan cache:clear
  1. 此处为您的帐户启用“安全性较低的应用程序” 。
  2. 尝试在您的文件中设置邮件加密tls和端口 MAIL_HOST=smtp.gmail.com MAIL_PORT=587 [email protected] MAIL_PASSWORD=your-password MAIL_ENCRYPTION=tls587.env





  3. 然后运行 ​​php artisan cache:clear

This worked just fine for me.

这对我来说很好。

回答by Rashmi Jain

In laravel, I was also having the same issue but is because of... I was not using "use clause" in the Mail function .

在 Laravel 中,我也遇到了同样的问题,但因为……我没有在 Mail 函数中使用“use 子句”。

The error got solved after using "use clause".

使用“use 子句”后错误得到解决。

回答by Lesnier Gonzalez

Man, enter google settings, security options, security alerts. There you probably have alerts of google blocks ... your code is fine, only google is blocking you, give it permission and ready .... enter image description here

伙计,输入谷歌设置、安全选项、安全警报。在那里你可能有谷歌阻止的警报......你的代码很好,只有谷歌阻止了你,给它许可并准备好...... 在此处输入图像描述