29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
<?php
|
||
/**
|
||
* File: verified_confirmation.php
|
||
* Version: 1.1
|
||
* Path: /resources/views/emails/verified_confirmation.php
|
||
* Purpose: Sent to user after successful email verification.
|
||
*/
|
||
?>
|
||
|
||
<?php ob_start(); ?>
|
||
<p>Hello <?= htmlspecialchars($first_name ?? 'there') ?>,</p>
|
||
|
||
<p>Your email has been successfully verified. Thank you for connecting with Wizdom Networks.</p>
|
||
|
||
<p>Here's a summary of your submission:</p>
|
||
<ul>
|
||
<?php if (!empty($last_name)): ?><li><strong>Name:</strong> <?= htmlspecialchars($first_name . ' ' . $last_name) ?></li><?php endif; ?>
|
||
<?php if (!empty($email)): ?><li><strong>Email:</strong> <?= htmlspecialchars($email) ?></li><?php endif; ?>
|
||
<?php if (!empty($message)): ?><li><strong>Message:</strong><br><?= nl2br(htmlspecialchars($message)) ?></li><?php endif; ?>
|
||
</ul>
|
||
|
||
<p>We’ll be in touch soon if your message requires a response. In the meantime, feel free to reach out at <strong>416-USE-WISE</strong> if you need immediate assistance.</p>
|
||
|
||
<p>— The Wizdom Networks Team</p>
|
||
<?php $body = ob_get_clean(); ?>
|
||
|
||
<?php include __DIR__ . '/../layouts/email_layout.php'; ?>
|
||
|