Files
alrahma_sunday_school/app/Views/emails/reset_password.php
T
2026-05-16 13:44:12 -04:00

26 lines
724 B
PHP
Executable File

<?= $this->extend('layout/email_layout') ?>
<?= $this->section('content') ?>
<p style="font-size: 18px;">Hello,</p>
<p style="font-size: 18px;">
We received a request to reset your password. If you initiated this request, please click on the link below to set a new password:
</p>
<p style="font-size: 18px;">
<a href="<?= esc($resetLink) ?>" style="color: #007bff;">Reset Password</a>
</p>
<p style="font-size: 18px;">
If you did not request a password reset, please discard this email.
</p>
<p style="font-size:18px">
Warm regards,<br>
<strong><?= esc($orgName ?? 'Al Rahma Sunday School') ?></strong>
</p>
</p>
<?= $this->endSection() ?>