Guest User

Untitled

a guest
Feb 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Mail::bcc(MailList::where('dl', 'PendingBulletins')->pluck('email'))->send(new PendingBulletins($subject, $bulletins));
  2.  
  3. $recipients = MailList::where('dl', 'PendingBulletins')->pluck('email');
  4.  
  5. foreach ($recipients as $email) {
  6. Mail::bcc($email)->send(new PendingBulletins($subject, $bulletins));
  7. }
Add Comment
Please, Sign In to add comment