Blame view

backend/modules/user/mail/passwordResetToken-text.php 397 Bytes
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 = Yii::$app->getUrlManager()->createAbsoluteUrl(['/user/password/reset', 'token' => $user['password_reset_token']]);
  ?>
  Hello <?= $user['username'] ?>,
  
  Follow the link below to reset your password:
  
  <?= $resetLink ?>