mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
8e3f8de627
Closes #4500
19 lines
562 B
PHP
19 lines
562 B
PHP
<?php
|
|
|
|
namespace BookStack\Settings;
|
|
|
|
use BookStack\App\MailNotification;
|
|
use BookStack\Users\Models\User;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
class TestEmailNotification extends MailNotification
|
|
{
|
|
public function toMail(User $notifiable): MailMessage
|
|
{
|
|
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'));
|
|
}
|
|
}
|