我有用户通知:
public function toMail($notifiable)
{
return (new MailMessage)
->subject('Test email subject')
->greeting('Hello!');
}
当我打电话时:
$user->notify(new UserNotify())
一切都很好。电子邮件发送给我。但是主题没有改变。在主题中始终Example
为什么?
答案 0 :(得分:0)
在build方法的Mailable类MailMessage
中,当您准备邮件时,可以传递主题:
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->view('email')
->subject('Test email subject');
}