Files
xk-api-yii/common/mail/emailVerify-text.php

13 lines
298 B
PHP
Raw Normal View History

2024-09-19 11:32:39 +08:00
<?php
/** @var yii\web\View $this */
2024-12-19 19:20:27 +08:00
/** @var \common\models\oldDb\User $user */
2024-09-19 11:32:39 +08:00
$verifyLink = Yii::$app->urlManager->createAbsoluteUrl(['site/verify-email', 'token' => $user->verification_token]);
?>
Hello <?= $user->username ?>,
Follow the link below to verify your email:
<?= $verifyLink ?>