d1f8bd40
Alexey Boroda
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
//TODO 1: Разобраться с почтовыми сообщениями.
/* @var $this yii\web\View */
/* @var $user \thread\modules\user\models\User */
$resetLink = Url::toRoute(['/user/password/reset', 'token' => $user->password_reset_token], true);
?>
Hello <?= Html::encode($user->email) ?>,
Follow the link below to reset your password:
<?= $resetLink ?>
|