mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
19 lines
590 B
PHP
19 lines
590 B
PHP
<?php namespace BookStack\Notifications;
|
|
|
|
class TestEmail extends MailNotification
|
|
{
|
|
/**
|
|
* Get the mail representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return \Illuminate\Notifications\Messages\MailMessage
|
|
*/
|
|
public function toMail($notifiable)
|
|
{
|
|
return $this->newMailMessage()
|
|
->subject(trans('settings.maint_send_test_email_mail_subject'))
|
|
->greeting(trans('settings.maint_send_test_email_mail_greeting'))
|
|
->line(trans('settings.maint_send_test_email_mail_text'));
|
|
}
|
|
}
|