action = $action; $this->shortlist = $shortlist; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->subject('Shortlist Approved - ' . config('app.name')) ->view('profile::shortlist.email.action', ['data' => $this->shortlist]); } /** * Get the notification's delivery channels. * * @param object $notifiable * @return array */ public function via(object $notifiable): array { return ['mail']; } }