1 <?php namespace BookStack\Notifications;
3 class TestEmail extends MailNotification
6 * Get the mail representation of the notification.
8 * @param mixed $notifiable
9 * @return \Illuminate\Notifications\Messages\MailMessage
11 public function toMail($notifiable)
13 return $this->newMailMessage()
14 ->subject(trans('settings.maint_send_test_email_mail_subject'))
15 ->greeting(trans('settings.maint_send_test_email_mail_greeting'))
16 ->line(trans('settings.maint_send_test_email_mail_text'));