3 namespace BookStack\Notifications;
5 class TestEmail extends MailNotification
8 * Get the mail representation of the notification.
10 * @param mixed $notifiable
12 * @return \Illuminate\Notifications\Messages\MailMessage
14 public function toMail($notifiable)
16 return $this->newMailMessage()
17 ->subject(trans('settings.maint_send_test_email_mail_subject'))
18 ->greeting(trans('settings.maint_send_test_email_mail_greeting'))
19 ->line(trans('settings.maint_send_test_email_mail_text'));