reconfirmation.php 770 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the Dektrium project.
  4. *
  5. * (c) Dektrium project <http://github.com/dektrium>
  6. *
  7. * For the full copyright and license information, please view the LICENSE.md
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * @var dektrium\user\models\Token $token
  12. */
  13. ?>
  14. <?= Yii::t('user', 'Hello') ?>,
  15. <?= Yii::t(
  16. 'user',
  17. 'We have received a request to change the email address for your account on {0}',
  18. Yii::$app->name
  19. ) ?>.
  20. <?= Yii::t('user', 'In order to complete your request, please click the link below') ?>.
  21. <?= $token->url ?>
  22. <?= Yii::t('user', 'If you cannot click the link, please try pasting the text into your browser') ?>.
  23. <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.