WizdomWeb/resources/views/emails/verified_confirmation.php

29 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>Well 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'; ?>