13 lines
313 B

7 years ago
<?php
/* @var $this yii\web\View */
/* @var $user \core\entities\user\User */
$resetLink = Yii::$app->get('frontendUrlManager')->createAbsoluteUrl(['auth/reset/confirm', 'token' => $user->password_reset_token]);
?>
Hello <?= $user->username ?>,
Follow the link below to reset your password:
<?= $resetLink ?>