Files
2026-05-16 13:44:12 -04:00

27 lines
1.0 KiB
PHP
Executable File

<?= $this->extend('layout/email_layout') ?>
<?= $this->section('content') ?>
<div style="font-family:Arial, Helvetica, sans-serif; color:#222; font-size:16px; line-height:1.6;">
<p style="margin:0 0 12px 0;">
Dear <?= esc($parent_name ?? 'Parent/Guardian') ?>,
</p>
<p style="margin:0 0 12px 0;">
We are writing to inform you that <?= $student_name ? 'your child, <strong>' . esc($student_name) . '</strong>' : 'your child' ?> has been officially withdrawn from the school's enrollment list, effective immediately.
</p>
<p style="margin:0 0 12px 0;">
To ensure confidentiality and accuracy, we kindly request that you contact the school directly. This will allow us to provide complete information and discuss any necessary next steps.
</p>
<p style="margin:0 0 12px 0;">
Thank you for your understanding. We look forward to speaking with you soon.
</p>
<p style="margin:0;">
Sincerely,<br>
<?= esc($signature ?? 'AlRahma School Administration') ?>
</p>
</div>
<?= $this->endSection() ?>