laravel Expected response code 250 but got code “530”

后端 未结 9 758
有刺的猬
有刺的猬 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 18:04

    MAIL_ENCRYPTION=null change it to MAIL_ENCRYPTION=tls

    Just Change your encryption type to 'tls' and it would work and make sure your google account's 'LESS SECURE APP ACCESS' is turned 'ON' and also after changing your .env file you should restart your laravel server.

    Hope it helps.

提交回复
热议问题