laravel Expected response code 250 but got code “530”

后端 未结 9 792
有刺的猬
有刺的猬 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:55

    I had the same problem. I changed,

    MAIL_ENCRYPTION=null to 
    MAIL_ENCRYPTION=tls 
    
    php artisan config:cache
    

    and it worked.

提交回复
热议问题