Reputation: 1963
I am trying to use smtp this is my .env file configurations
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=abcd
MAIL_ENCRYPTION=tls
Upvotes: 0
Views: 103
Reputation: 1049
Had similar problem
Try restarting your server then,
composer dumpautoload
php artisan config:clear
And ensure you got have internet
Upvotes: 1