13 lines
295 B
PHP
13 lines
295 B
PHP
|
<?php
|
||
|
|
||
|
/** @var yii\web\View $this */
|
||
|
/** @var common\models\User $user */
|
||
|
|
||
|
$resetLink = Yii::$app->urlManager->createAbsoluteUrl(['site/reset-password', 'token' => $user->password_reset_token]);
|
||
|
?>
|
||
|
Hello <?= $user->username ?>,
|
||
|
|
||
|
Follow the link below to reset your password:
|
||
|
|
||
|
<?= $resetLink ?>
|