mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Fix password reset email domain name (#7676)
$domain_name is undefined since it was replaced with $password_reset_domain
This commit is contained in:
@@ -143,7 +143,7 @@
|
|||||||
$email_body = str_replace('${reset_button}', $reset_button, $email_body);
|
$email_body = str_replace('${reset_button}', $reset_button, $email_body);
|
||||||
$email_body = str_replace('${logo_full}', $logo_full, $email_body);
|
$email_body = str_replace('${logo_full}', $logo_full, $email_body);
|
||||||
$email_body = str_replace('${logo_shield}', $logo_shield, $email_body);
|
$email_body = str_replace('${logo_shield}', $logo_shield, $email_body);
|
||||||
$email_body = str_replace('${domain}', $domain_name, $email_body);
|
$email_body = str_replace('${domain}', $password_reset_domain, $email_body);
|
||||||
|
|
||||||
//send reset link
|
//send reset link
|
||||||
if (send_email($email, $email_subject, $email_body, $eml_error)) {
|
if (send_email($email, $email_subject, $email_body, $eml_error)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user