27 lines
709 B
PHP
27 lines
709 B
PHP
<?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 didn’t 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'; ?>
|
||
|