Advertisement
Guest User

Untitled

a guest
Feb 16th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. MAIL_DRIVER=smtp
  2. MAIL_HOST=gnom.websitewelcome.com
  3. MAIL_PORT=465
  4. MAIL_USERNAME=micorreo@midominio.com
  5. MAIL_PASSWORD=mipass
  6. MAIL_ENCRYPTION=ssl
  7.  
  8. Route::any('mail', function() {
  9. $cliente = Auth::user();
  10. Mail::send('backend.emails.bills',
  11. [
  12.  
  13. ],
  14. function ($m) use ($cliente) {
  15. $m->from('no-reply@hssoluciones.com', 'HS Soluciones');
  16. $m->to('cortega@dinsagroup.com', 'Factura de Soporte Técnico')->subject('Se ha creado una nueva factura.');
  17. });
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement