某些用户的另一个电子邮件地址存储在secondary_email
表的users
列中。
如何使用$user->notify()
发送通知到此辅助电子邮件地址?
答案 0 :(得分:1)
您将覆盖通知的toMail
方法。例如:
use App\Mail\InvoicePaid as Mailable;
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return Mailable
*/
public function toMail($notifiable)
{
return (new Mailable($this->invoice))
->to($this->user->secondary_email ?? $this->user->email);
}
您可以了解有关格式化通知here的更多信息。