mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/11327] Adjust wording of forgot password email
PHPBB3-11327
This commit is contained in:
parent
cfea54f8f3
commit
1d1d963c14
2 changed files with 7 additions and 11 deletions
|
@ -1,17 +1,13 @@
|
||||||
Subject: New password activation
|
Subject: Account password reset
|
||||||
|
|
||||||
Hello {USERNAME}
|
Hello {USERNAME}
|
||||||
|
|
||||||
You are receiving this notification because you have (or someone pretending to be you has) requested a new password be sent for your account on "{SITENAME}". If you did not request this notification then please ignore it, if you keep receiving it please contact the board administrator.
|
You are receiving this notification because you have requested to recover a forgotten password for your account on "{SITENAME}".
|
||||||
|
|
||||||
To use the new password you need to activate it. To do this click the link provided below.
|
To reset your password, please click the link provided below:
|
||||||
|
|
||||||
{U_ACTIVATE}
|
{U_RESET_PASSWORD}
|
||||||
|
|
||||||
If successful you will be able to login using the following password:
|
If you did not authorize the request you can ignore this email. Please contact the board administrator if you keep receiving it.
|
||||||
|
|
||||||
Password: {PASSWORD}
|
|
||||||
|
|
||||||
You can of course change this password yourself via the profile page. If you have any difficulties please contact the board administrator.
|
|
||||||
|
|
||||||
{EMAIL_SIG}
|
{EMAIL_SIG}
|
||||||
|
|
|
@ -222,7 +222,7 @@ class reset_password
|
||||||
|
|
||||||
$messenger->assign_vars(array(
|
$messenger->assign_vars(array(
|
||||||
'USERNAME' => htmlspecialchars_decode($user_row['username']),
|
'USERNAME' => htmlspecialchars_decode($user_row['username']),
|
||||||
'U_ACTIVATE' => $this->helper->route('phpbb_ucp_reset_password_controller')
|
'U_RESET_PASSWORD' => $this->helper->route('phpbb_ucp_reset_password_controller')
|
||||||
));
|
));
|
||||||
|
|
||||||
$messenger->send($user_row['user_notify_type']);
|
$messenger->send($user_row['user_notify_type']);
|
||||||
|
|
Loading…
Add table
Reference in a new issue