mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
3847a76134
- This ensures content notifications are not translated to receiver language. - This adds actual plaintext support for content notifications (Was previously just HTML as text view). - Shares same base class across all mail notifications. - Also cleaned up existing notification classes. Future cleanup requested via #4501
26 lines
727 B
PHP
26 lines
727 B
PHP
<?php
|
|
|
|
namespace BookStack\Notifications;
|
|
|
|
use BookStack\Users\Models\User;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
class ConfirmEmail extends MailNotification
|
|
{
|
|
public function __construct(
|
|
public string $token
|
|
) {
|
|
}
|
|
|
|
public function toMail(User $notifiable): MailMessage
|
|
{
|
|
$appName = ['appName' => setting('app-name')];
|
|
|
|
return $this->newMailMessage()
|
|
->subject(trans('auth.email_confirm_subject', $appName))
|
|
->greeting(trans('auth.email_confirm_greeting', $appName))
|
|
->line(trans('auth.email_confirm_text'))
|
|
->action(trans('auth.email_confirm_action'), url('/register/confirm/' . $this->token));
|
|
}
|
|
}
|