12345678910111213141516171819202122232425 |
- <?php
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $user common\modules\user\models\User */
- $resetLink = Yii::$app->urlManager->createAbsoluteUrl(['/user/security/reset-password', 'token' => $user->password_reset_token]);
- ?>
- <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
- <?= Yii::t('user', 'Hello') ?>,
- </p>
- <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
- <?= Yii::t('user', 'We have received a request to reset the password for your account on {0}', Yii::$app->config->get('SITE_NAME')) ?>.
- <?= Yii::t('user', 'Please click the link below to complete your password reset') ?>.
- </p>
- <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
- <?= Html::a(Html::encode($resetLink), $resetLink) ?>
- </p>
- <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
- <?= Yii::t('user', 'If you cannot click the link, please try pasting the text into your browser') ?>.
- </p>
- <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
- <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.
- </p>
|