2018-12-16 15:44:57 -05:00
|
|
|
<?php namespace BookStack\Notifications;
|
2016-09-17 13:22:04 -04:00
|
|
|
|
2018-12-16 15:44:57 -05:00
|
|
|
class ResetPassword extends MailNotification
|
2016-09-17 13:22:04 -04:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The password reset token.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $token;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a notification instance.
|
|
|
|
*
|
|
|
|
* @param string $token
|
|
|
|
*/
|
|
|
|
public function __construct($token)
|
|
|
|
{
|
|
|
|
$this->token = $token;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the mail representation of the notification.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Notifications\Messages\MailMessage
|
|
|
|
*/
|
|
|
|
public function toMail()
|
|
|
|
{
|
2018-12-16 15:44:57 -05:00
|
|
|
return $this->newMailMessage()
|
2016-11-13 11:34:28 -05:00
|
|
|
->subject(trans('auth.email_reset_subject', ['appName' => setting('app-name')]))
|
|
|
|
->line(trans('auth.email_reset_text'))
|
2019-08-04 09:26:39 -04:00
|
|
|
->action(trans('auth.reset_password'), url('password/reset/' . $this->token))
|
2016-11-13 11:34:28 -05:00
|
|
|
->line(trans('auth.email_reset_not_requested'));
|
2016-09-17 13:22:04 -04:00
|
|
|
}
|
|
|
|
}
|