Guest User

Untitled

a guest
Apr 1st, 2018
591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. Mail::to('email@prueba.com')
  3. ->bcc(
  4. [
  5. 'email1@email.com',
  6. 'email2@email.com',
  7. 'email3@email.com'
  8. ],
  9. [
  10. 'Nombre 1',
  11. 'Nombre 2',
  12. 'Nombre 3'
  13. ]
  14. )
  15. ->queue(new EmailTest());
Add Comment
Please, Sign In to add comment