laravel Expected response code 250 but got code “530”

后端 未结 9 789
有刺的猬
有刺的猬 2020-12-06 17:19

Im trying to Mail in Laravel 5.1

my mail.php code is

 return [
     \'driver\' => env(\'MAIL_DRIVER\', \'smtp\'),
     \'host\' => env(\'MAIL_HOS         


        
9条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-06 17:57

    Change in .env file:

    MAIL_ENCRYPTION=tls
    

    Clear cache:

    php artisan config:cache
    

    For Gmail accounts you need also turn on "Less secure app access" on https://myaccount.google.com/security. However that option shouldn't be changed on main account.

提交回复
热议问题