1 public function toMail($notifiable)
2 {
3 return (new MailMessage)
4 ->line('Please download the PDF.')
5 ->attach(public_path($this->filename), [
6 'as' => 'filename.pdf',
7 'mime' => 'text/pdf',
8 ]);
9 }