new-support.webeffector.ru/common/mail/emailVerify-text.php

13 lines
291 B
PHP
Raw Permalink Normal View History

2024-06-13 17:07:58 +03:00
<?php
/** @var yii\web\View $this */
/** @var common\models\User $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 ?>