mailSubject = $subject; $this->mailTemplate = $template; $this->mailTemplateArgs = $args; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage()) ->from(config('mail.from.address', 'no-reply@phpvms.net'), config('mail.from.name')) ->subject($this->mailSubject) ->markdown($this->mailTemplate, $this->mailTemplateArgs); } }