diff --git a/app/Notifications/Channels/MailChannel.php b/app/Notifications/Channels/MailChannel.php index 0112882d..ea93fef5 100644 --- a/app/Notifications/Channels/MailChannel.php +++ b/app/Notifications/Channels/MailChannel.php @@ -34,7 +34,7 @@ trait MailChannel public function toMail($notifiable) { return (new MailMessage()) - ->from(config('mail.from.address', 'no-reply@phpvms.net')) + ->from(config('mail.from.address', 'no-reply@phpvms.net'), config('mail.from.name')) ->subject($this->mailSubject) ->markdown($this->mailTemplate, $this->mailTemplateArgs); }