13 lines
289 B
PHP
Executable File
13 lines
289 B
PHP
Executable File
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $user common\models\User */
|
|
|
|
$verifyLink = Yii::$app->urlManager->createAbsoluteUrl(['site/verify-email', 'token' => $user->verification_token]);
|
|
?>
|
|
Hello <?= $user->username ?>,
|
|
|
|
Follow the link below to verify your email:
|
|
|
|
<?= $verifyLink ?>
|