Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how can we send attached file with notification in gmail in laravel 8

 public function toMail($notifiable)
    {
        return (new MailMessage)
                    ->line('Please download the PDF.')
                    ->attach(public_path($this->filename), [
                        'as' => 'filename.pdf',
                        'mime' => 'text/pdf',
                    ]);
    }
 
PREVIOUS NEXT
Tagged: #send #attached #file #notification #gmail #laravel
ADD COMMENT
Topic
Name
4+1 =