13 lines
316 B

7 years ago
<?php
/* @var $this yii\web\View */
/* @var $user \core\entities\user\User */
$confirmLink = Yii::$app->get('frontendUrlManager')->createAbsoluteUrl(['auth/signup/confirm', 'token' => $user->email_confirm_token]);
?>
Hello <?= $user->username ?>,
Follow the link below to confirm your email:
<?= $confirmLink ?>