Вы бы переопределили 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);
}
Подробнее о форматировании уведомлений можно прочитать здесь .