From d3e902ac637babd03d66ebf6b0e84ab51741f689 Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Fri, 15 Mar 2013 17:13:50 +0100 Subject: [PATCH] when a new e-mail address is created, don't use the the customers name, as it might confuse the owner of the account, fixes #1127 Signed-off-by: Michael Kaufmann (d00p) --- customer_email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/customer_email.php b/customer_email.php index b8225488..0ce8d8d9 100644 --- a/customer_email.php +++ b/customer_email.php @@ -512,7 +512,7 @@ elseif($page == 'accounts') $mail->Subject = $mail_subject; $mail->AltBody = $mail_body; $mail->MsgHTML(str_replace("\n", "
", $mail_body)); - $mail->AddAddress($email_full, getCorrectUserSalutation($userinfo)); + $mail->AddAddress($email_full); $mail->Send(); } catch(phpmailerException $e) { $mailerr_msg = $e->errorMessage();