fix: missing $mailMessage
This commit is contained in:
parent
b6d8851c99
commit
a4a653603e
1 changed files with 3 additions and 1 deletions
|
|
@ -34,7 +34,9 @@ public function send(SendsEmail $notifiable, Notification $notification): void
|
||||||
if (isset($recepients)) {
|
if (isset($recepients)) {
|
||||||
$message .= implode(', ', $recepients);
|
$message .= implode(', ', $recepients);
|
||||||
}
|
}
|
||||||
$message .= " with subject: {$mailMessage->subject}";
|
if (isset($mailMessage)) {
|
||||||
|
$message .= " with subject: {$mailMessage->subject}";
|
||||||
|
}
|
||||||
send_internal_notification($message);
|
send_internal_notification($message);
|
||||||
throw $e;
|
throw $e;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue