Advertisement
Guest User

Untitled

a guest
Mar 20th, 2017
783
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. MAIL_DRIVER=smtp
  2. MAIL_HOST=smtp.zoho.com
  3. MAIL_PORT=465
  4. MAIL_USERNAME=email@empresa.com
  5. MAIL_PASSWORD=contraseña
  6. MAIL_ENCRYPTION=ssl
  7.  
  8. $emailEnviado = Mail::send('email.Activacion', ['texto' => $texto, 'token' => $token], function ($m) use ($email){
  9. $m->from('email@email.com.uy');
  10. $m->to($email);
  11. $m->subject('Correo de activacion de cuenta');
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement