send multiple attachment in mail laravel code example
Example 1: attach multiple files in laravel mailable
public function build()
{
$email = $this->view('emails.employment_mailview')->subject('Employment Application');
foreach($attachments as $filePath){
$email->attach($filePath);
}
return $email;
}
Example 2: send multiple mail in laravel
$emails = ['[email protected]', '[email protected]','[email protected]'];
Mail::send('emails.welcome', [], function($message) use ($emails)
{
$message->to($emails)->subject('This is test e-mail');
});
var_dump( Mail:: failures());
exit;