Level 70
@user1980 Try this-
return $this->view('emails.myDemoMail')
->attach(public_path('pdf/sample.pdf'), [
'as' => 'sample.pdf',
'mime' => 'application/pdf',
])->attach(public_path('other/file/type.dox')
])->attach(public_path('other/file/type.ppt');
Check more: https://laravel.com/api/8.x/Illuminate/Mail/Mailable.html#method_attach
3 likes