diff --git a/src/channels/MailChannel.php b/src/channels/MailChannel.php index 9ecca92..a819d8c 100644 --- a/src/channels/MailChannel.php +++ b/src/channels/MailChannel.php @@ -40,6 +40,7 @@ public function send(NotifiableInterface $recipient, NotificationInterface $noti $this->mailer->compose($message->view, $message->viewData) ->setFrom(isset($message->from) ? $message->from : $this->from) ->setTo($recipient->routeNotificationFor('mail')) + ->setSubject($message->subject) ->send(); } -} \ No newline at end of file +}