Files
alrahma_sunday_school/app/Views/emails/status_admission_review.php
T
2026-02-10 22:11:06 -05:00

45 lines
1.6 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.
<?= $this->extend('layout/email_layout') ?>
<?= $this->section('content') ?>
<h2 style="font-size:22px; font-weight:bold;">Admission Under Review</h2>
<p style="font-size:16px;">Dear <?= $parentName ?>,</p>
<?php if (is_array($studentName)): ?>
<p style="font-size:16px;">
Thank you for submitting the enrollment application for the following <?= count($studentName) ?> students:
</p>
<ul style="font-size:16px;">
<?php foreach ($studentName as $student): ?>
<li><?= $student ?></li>
<?php endforeach; ?>
</ul>
<?php else: ?>
<p style="font-size:16px;">
Thank you for submitting the enrollment application for <?= $studentName ?>.
</p>
<?php endif; ?>
<p style="font-size:16px;">
Your application<?= is_array($studentName) ? 's are' : ' is' ?> currently under review by our admissions committee. This process typically takes 12 business days.
</p>
<p style="font-size:16px;">
You will be notified immediately once a decision has been made.
</p>
<p style="font-size:16px;">
You can check your application status at any time through the parent portal.
</p>
<p>
<!-- make sure helper('url') is loaded -->
<p style="margin:16px 0;">
<a href="<?= base_url() ?>" target="_blank" rel="noopener"
style="display:inline-block; padding:10px 16px; text-decoration:none; border-radius:6px;
background:#198754; color:#ffffff; font-weight:600; font-size:16px;">
Access My Account
</a>
</p>
<p style="font-size:16px;">
Best regards,<br>Admissions Team
</p>
<?= $this->endSection() ?>