Advertisement
Guest User

Untitled

a guest
Feb 15th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Swift_TransportException in StreamBuffer.php line 268:
  2. Connection could not be established with host gnom.websitewelcome.com [ #0]
  3.  
  4. Route::any('mail', function() {
  5. $cliente = Auth::user();
  6. Mail::send('backend.emails.bills',
  7. [
  8.  
  9. ],
  10. function ($m) use ($cliente) {
  11. $m->from('micorreo@midominio.com', 'Mi nombre');
  12. $m->to('alguien@sudominio.com', 'Factura')->subject('Asunto cualquiera.');
  13. });
  14. });
  15.  
  16. MAIL_DRIVER=smtp
  17. MAIL_HOST=gnom.websitewelcome.com
  18. MAIL_PORT=465
  19. MAIL_USERNAME=micorreo@midominio.com
  20. MAIL_PASSWORD=mipass
  21. MAIL_ENCRYPTION=ssl
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement