ctms/common/mail/emailVerify-text.php
2025-04-10 23:19:13 +08:00

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 ?>