WizdomWeb/resources/views/emails/verify_email.php

27 lines
709 B
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: verify_email.php
* Version: 1.0
* Path: /resources/views/emails/verify_email.php
* Purpose: Content block for verification emails.
* Project: Wizdom Networks Website
*/
?>
<?php ob_start(); ?>
<p>Hello <?= htmlspecialchars($first_name ?? 'there') ?>,</p>
<p>Thank you for connecting with Wizdom Networks. Please confirm your email by clicking the link below:</p>
<p><a href="<?= htmlspecialchars($verification_link) ?>">Verify My Email</a></p>
<p>This link will expire in 48 hours.</p>
<p>If you didnt request this, please ignore this email.</p>
<p>— The Wizdom Networks Team</p>
<?php $body = ob_get_clean(); ?>
<?php include __DIR__ . '/../layouts/email_layout.php'; ?>