Advertisement
Guest User

Untitled

a guest
Jun 9th, 2016
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. Swift_TransportException in AbstractSmtpTransport.php line 383:
  2. Expected response code 220 but got code "", with message ""
  3.  
  4. MAIL_DRIVER=smtp
  5. MAIL_HOST=send.one.com
  6. MAIL_PORT=465
  7. MAIL_USERNAME=info@myemail.se
  8. MAIL_PASSWORD=password
  9. MAIL_ENCRYPTION=null
  10.  
  11. 'driver' => env('MAIL_DRIVER', 'smtp'),
  12. 'host' => env('MAIL_HOST', 'send.one.com'),
  13. 'port' => env('MAIL_PORT', 465),
  14. 'from' => ['address' => 'info@myemail.se', 'name' => 'donotreply'],
  15. 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
  16. 'username' => env('MAIL_USERNAME'),
  17. 'password' => env('MAIL_PASSWORD'),
  18. 'sendmail' => '/usr/sbin/sendmail -bs',
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement