26 lines
724 B
PHP
Executable File
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() ?>
|