2021-06-26 23:23:15 +08:00
|
|
|
<?php
|
|
|
|
|
2023-09-12 02:26:28 +08:00
|
|
|
namespace BookStack\Access\Notifications;
|
2016-09-18 01:22:04 +08:00
|
|
|
|
2023-09-12 02:26:28 +08:00
|
|
|
use BookStack\App\MailNotification;
|
2023-09-02 22:11:42 +08:00
|
|
|
use BookStack\Users\Models\User;
|
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
|
2023-09-12 02:26:28 +08:00
|
|
|
class ConfirmEmailNotification extends MailNotification
|
2016-09-18 01:22:04 +08:00
|
|
|
{
|
2023-09-02 22:11:42 +08:00
|
|
|
public function __construct(
|
|
|
|
public string $token
|
|
|
|
) {
|
2016-09-18 01:22:04 +08:00
|
|
|
}
|
|
|
|
|
2023-09-02 22:11:42 +08:00
|
|
|
public function toMail(User $notifiable): MailMessage
|
2016-09-18 01:22:04 +08:00
|
|
|
{
|
2016-09-18 04:33:55 +08:00
|
|
|
$appName = ['appName' => setting('app-name')];
|
2021-06-26 23:23:15 +08:00
|
|
|
|
2018-12-17 04:44:57 +08:00
|
|
|
return $this->newMailMessage()
|
|
|
|
->subject(trans('auth.email_confirm_subject', $appName))
|
|
|
|
->greeting(trans('auth.email_confirm_greeting', $appName))
|
|
|
|
->line(trans('auth.email_confirm_text'))
|
2019-08-04 21:26:39 +08:00
|
|
|
->action(trans('auth.email_confirm_action'), url('/register/confirm/' . $this->token));
|
2016-09-18 01:22:04 +08:00
|
|
|
}
|
|
|
|
}
|