Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. MAIL_DRIVER=smtp
  2. MAIL_HOST=smtp.mail.yahoo.com
  3. MAIL_PORT=465
  4. MAIL_USERNAME=myacount@yahoo.com
  5. MAIL_PASSWORD=mypassword
  6. MAIL_ENCRYPTION=SSL
  7.  
  8. 'driver' => env('MAIL_DRIVER', 'smpt'),
  9. 'host' => env('MAIL_HOST', 'smtp.mail.yahoo.com'),
  10. 'port' => env('MAIL_PORT', 465),
  11. 'from' => ['address' => 'myacount@yahoo.com', 'name' => 'reset password'],
  12. 'encryption' => env('MAIL_ENCRYPTION', 'SSL'),
  13. 'username' => env('myacount@yahoo.com'),
  14. 'password' => env('mypassword'),
  15. 'sendmail' => '/usr/sbin/sendmail -bs',
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement