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

30 lines
985 B
PHP
Executable File
Raw Permalink 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') ?>
<p style="font-size:18px">Dear <?= esc($recipientName) ?>,</p>
<p style="font-size:18px">
Thank you for creating an account with us — were thrilled to welcome you to
<strong><?= esc($orgName) ?></strong> community!
</p>
<p style="font-size:18px">To activate your account, click the link below:</p>
<p>
<a href="<?= esc($activationLink) ?>" style="font-size:18px; color:#007bff;">Activate my account</a>
</p>
<p style="font-size:18px">Once activated you will be able to:</p>
<ul style="font-size:18px">
<li>Access your dashboard</li>
<li>Receive school notifications and updates</li>
</ul>
<p style="font-size:18px">
Contact us at <a href="mailto:<?= esc($contactInfo) ?>" style="color:#0000EE;"><?= esc($contactInfo) ?></a>
if you have any questions.
</p>
<p style="font-size:18px">Warm regards,<br><strong><?= esc($orgName) ?></strong></p>
<?= $this->endSection() ?>