30 lines
985 B
PHP
30 lines
985 B
PHP
<?= $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 — we’re 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() ?>
|