1$emails = ['myoneemail@esomething.com', 'myother@esomething.com','myother2@esomething.com'];
2
3Mail::send('emails.welcome', [], function($message) use ($emails)
4{
5 $message->to($emails)->subject('This is test e-mail');
6});
7var_dump( Mail:: failures());
8exit;
9