Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. 'driver' => env('MAIL_DRIVER', 'smtp'),
  2.  
  3. 'driver' => 'sendmail',
  4.  
  5. 'driver' => 'mail',
  6.  
  7. MAIL_DRIVER=smtp
  8. MAIL_HOST=smtp.gmail.com
  9. MAIL_PORT=587
  10. MAIL_USERNAME=youremail@gmail.com
  11. MAIL_PASSWORD="password"
  12. MAIL_ENCRYPTION=tls
  13.  
  14. php artisan cache:clear
  15. php artisan config:cache
  16. php artisan cache:clear
  17.  
  18. MAIL_DRIVER=sendmail
  19.  
  20. 'sendmail' => env('MAIL_SENDMAIL', '/usr/sbin/sendmail -bs')
  21.  
  22. MAIL_SENDMAIL='/usr/sbin/sendmail -t -i'
  23.  
  24. MAIL_DRIVER=smtp
  25. MAIL_HOST=localhost
  26. MAIL_PORT=25
  27. MAIL_USERNAME=
  28. MAIL_PASSWORD=
  29. MAIL_ENCRYPTION=null
  30.  
  31. php artisan config:cache
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement