2024-09-19 11:32:39 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/** @var yii\web\View $this */
|
2024-12-19 19:20:27 +08:00
|
|
|
/** @var \common\models\oldDb\User $user */
|
2024-09-19 11:32:39 +08:00
|
|
|
|
|
|
|
|
$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 ?>
|