1

登録後、デフォルト認証の toMail() 関数の通知で ->greeting() を変更したかっただけです。検証URLなどを保持したいのですが、行き詰まっています。sendEmailVerificationnotification() をオーバーライドすると、メール全体が変更されます。本来送信されるはずだった URL を取得する方法、または元の認証を編集して ->greeting('Hello') with Dear Name, のみを編集する方法は?

ユーザーモデルで

public function sendEmailVerificationNotification()
{
    $this->notify(new CustomVerifyEmail());
}

CustomVerifyEmail で

/**
 * Create a new notification instance.
 *
 * @return void
 */
public function __construct()
{
}

/**
 * Get the notification's delivery channels.
 *
 * @param  mixed  $notifiable
 * @return array
 */
public function via($notifiable)
{
    return ['mail'];
}

/**
 * Get the mail representation of the notification.
 *
 * @param  mixed  $notifiable
 * @return \Illuminate\Notifications\Messages\MailMessage
 */
public function toMail($notifiable)
{
    //dd($notifiable);
    return (new MailMessage)
                ->greeting('Dear ' . $notifiable->name . ',')
                ->line('The introduction to the notification.')
                ->action('Notification Action', url())
                ->line('Thank you for using our application!');
}

/**
 * Get the array representation of the notification.
 *
 * @param  mixed  $notifiable
 * @return array
 */
public function toArray($notifiable)
{
    return [
        //
    ];
}
4

1 に答える 1