Laravel 8 Markdown 格式的 Mailable 类
您可以在执行 make:mail
Artisan 命令时使用 --markdown
选项来生成一个使用 Markdown 格式的模板的 mailable 类:
php artisan make:mail OrderShipped --markdown=emails.orders.shipped
然后,在它的 build
方法中配置 mailable 类时,请使用 markdown
方法来代替 view
方法。markdown
方法接受 Markdown 模板的名称和想要传递给模板的可选的数组形式的数据:
/**
* 构造邮件消息。
*
* @return $this
*/
public function build()
{
return $this->from('example@example.com')
->markdown('emails.orders.shipped');
}