WizdomWeb/resources/views/emails/resend_verification.php

25 lines
666 B
PHP

<?php
/**
* File: resend_verification.php
* Version: 1.0
* Path: /resources/views/emails/resend_verification.php
* Purpose: Content block for re-sent verification emails.
*/
?>
<?php ob_start(); ?>
<p>Hello <?= htmlspecialchars($first_name ?? 'there') ?>,</p>
<p>You recently requested to re-send your email verification link. Please click below to verify your email address:</p>
<p><a href="<?= htmlspecialchars($verification_link) ?>">Verify My Email</a></p>
<p>If you didn't request this, no further action is needed.</p>
<p>— The Wizdom Networks Team</p>
<?php $body = ob_get_clean(); ?>
<?php include __DIR__ . '/../layouts/email_layout.php'; ?>