Skip to content

Instantly share code, notes, and snippets.

@mariapaulinar
Last active March 23, 2018 14:19
Show Gist options
  • Save mariapaulinar/6390a32c1e63ef1229f9f281c551aae7 to your computer and use it in GitHub Desktop.
Save mariapaulinar/6390a32c1e63ef1229f9f281c551aae7 to your computer and use it in GitHub Desktop.
Envío de correo a varios bcc
<?php
Mail::to('email@prueba.com')
->bcc(
[
'email1@email.com',
'email2@email.com',
'email3@email.com'
],
[
'Nombre 1',
'Nombre 2',
'Nombre 3'
]
)
->queue(new EmailTest());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment