Skip to content

Commit

Permalink
FIX typo in lost password mail
Browse files Browse the repository at this point in the history
  • Loading branch information
haruka-7 committed Nov 18, 2023
1 parent 9e35f60 commit da402a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.7 - 2023/mm/dd

- FIX typo in lost password mail template

## 1.6 - 2023/11/17

**Warning** : `settings.php` needs to be updated with new constants (see `setting-sample.php` : `MAIL_LOSTPASSWORD_SUBJECT` and `MAIL_LOSTPASSWORD_BODY`)
Expand Down
4 changes: 2 additions & 2 deletions config/settings-sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
const MAIL_FROM = '[email protected]';
const MAIL_FROM_NAME = 'MailName';
const MAIL_NEWUSER_SUBJECT = 'Welcome to PluXml Nexus';
const MAIL_NEWUSER_BODY = 'Hello ##USERNAME##\nTo complete your signup and be able to login to https://ressources.pluxml.org, please confirm your email address by clicking the link below</p>##TOKEN##\nThis link will expire in 24h.';
const MAIL_NEWUSER_BODY = 'Hello ##USERNAME##. To complete your signup and be able to login to https://ressources.pluxml.org, please confirm your email address by clicking this link: ##TOKEN## The link will expire in 24h.';
const MAIL_LOSTPASSWORD_SUBJECT = 'PluXml Nexus - Lost password';
const MAIL_LOSTPASSWORD_BODY = 'Hello ##USERNAME##\nPlease use this link to change your password : ##URL_PASSWORD##\nThis link will expire in ##URL_EXPIRY## hours.';
const MAIL_LOSTPASSWORD_BODY = 'Hello ##USERNAME##. Please use this link to change your password: ##URL_PASSWORD## This link will expire in ##URL_EXPIRY## hours.';

0 comments on commit da402a1

Please sign in to comment.