Laravel使用其他电子邮件发送电子邮件给(通知)用户?

时间:2020-01-26 23:35:12

标签: php laravel laravel-6

某些用户的另一个电子邮件地址存储在secondary_email表的users列中。

如何使用$user->notify()发送通知到此辅助电子邮件地址?

1 个答案:

答案 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的更多信息。