📌  相关文章
📜  我们如何在 laravel 8 的 gmail 中发送带有通知的附件 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:23.993000             🧑  作者: Mango

代码示例1
public function toMail($notifiable)
    {
        return (new MailMessage)
                    ->line('Please download the PDF.')
                    ->attach(public_path($this->filename), [
                        'as' => 'filename.pdf',
                        'mime' => 'text/pdf',
                    ]);
    }