fix(emails): display verification link in clear text for email clients only displaying text

closes #328
This commit is contained in:
Yassine Doghri 2026-02-19 12:36:36 +00:00
commit 37c89df342
No known key found for this signature in database
GPG key ID: 1F41CB39A01C099A
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,6 @@
<p>
<?= lang('Auth.login') ?><br />
<a href="<?= url_to('verify-magic-link') ?>?token=<?= $token ?>">
<?= lang('Auth.login') ?>
<?= url_to('verify-magic-link') ?>?token=<?= $token ?>
</a>
</p>

View file

@ -4,7 +4,8 @@
'numberOfHours' => setting('Auth.welcomeLinkLifetime') / 3600,
]) ?><br /><br />
<?= lang('Auth.login') ?><br />
<a href="<?= url_to('verify-magic-link') ?>?token=<?= $token ?>">
<?= lang('Auth.login') ?>
<?= url_to('verify-magic-link') ?>?token=<?= $token ?>
</a>
</p>