Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2015
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2. return[
  3. 'driver'=>env('MAIL_DRIVER','smtp'),
  4. 'host'=>env('MAIL_HOST','smtp.gmail.com'),
  5. 'port'=>env('MAIL_PORT',587),
  6. 'from'=>['address'=>'emaiL@gmail.com','name'=>'Md. Ainul Moin Noor'],
  7. 'encryption'=>'tls',
  8. 'username'=>env('MAIL_USERNAME','email@gmail.com'),
  9. 'password'=>env('MAIL_PASSWORD','pwd'),
  10. 'sendmail'=>'/usr/sbin/sendmail -bs',
  11. 'pretend'=>true,
  12. ];
  13.  
  14. MAIL_DRIVER=smtp
  15. MAIL_HOST=smtp.gmail.com
  16. MAIL_PORT=587
  17. MAIL_USERNAME=email@gmail.com
  18. MAIL_PASSWORD=pwd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement