diff --git a/CHANGELOG.md b/CHANGELOG.md index a82f3cd..b2b48ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`) diff --git a/config/settings-sample.php b/config/settings-sample.php index 3f40b9a..ddc6c0a 100644 --- a/config/settings-sample.php +++ b/config/settings-sample.php @@ -33,6 +33,6 @@ const MAIL_FROM = 'name@mail.com'; 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

##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.';