create project
This commit is contained in:
16
common/mail/emailVerify-html.php
Normal file
16
common/mail/emailVerify-html.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
/** @var yii\web\View $this */
|
||||
/** @var common\models\User $user */
|
||||
|
||||
$verifyLink = Yii::$app->urlManager->createAbsoluteUrl(['site/verify-email', 'token' => $user->verification_token]);
|
||||
?>
|
||||
<div class="verify-email">
|
||||
<p>Hello <?= Html::encode($user->username) ?>,</p>
|
||||
|
||||
<p>Follow the link below to verify your email:</p>
|
||||
|
||||
<p><?= Html::a(Html::encode($verifyLink), $verifyLink) ?></p>
|
||||
</div>
|
Reference in New Issue
Block a user