gpt4 book ai didi

laravel - 密码重置电子邮件收到 530 5.7.1 需要身份验证

转载 作者:行者123 更新时间:2023-12-02 10:12:33 25 4
gpt4 key购买 nike

当我尝试发送密码重置电子邮件时,收到以下错误:

Swift_TransportException in AbstractSmtpTransport.php line 383:
Expected response code 250 but got code "530", with message "530 5.7.1 Authentication required"

我不确定这里出了什么问题。我查看了 Stack Overflow 和 Laracasts,发现了类似的问题。我尝试过两个不同的电子邮件地址和服务器。但我遇到了同样的错误。

这是我的 .env 文件:

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=xx@gmail.com
MAIL_PASSWORD=[password]
MAIL_ENCRYPTION=tls

这是我的 mail.php 文件:

'driver' => env('MAIL_DRIVER'),
'host' => env('MAIL_HOST'),
'port' => env('MAIL_PORT'),
'from' => [
'address' => 'xx@gmail.com',
'name' => 'XX',
],
'encryption' => env('MAIL_ENCRYPTION'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'sendmail' => '/usr/sbin/sendmail -bs',

有什么想法我错了吗?

最佳答案

我发现更改 .env 文件需要清除配置缓存:

php artisan config:cache

这成功了,现在正在发送电子邮件。

关于laravel - 密码重置电子邮件收到 530 5.7.1 需要身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40942881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com