From bb0eca8af02b68c93451bbe2213f3a63f37ce863 Mon Sep 17 00:00:00 2001 From: Jeff Zaroyko Date: Tue, 26 Feb 2008 15:00:31 +1100 Subject: [PATCH] decode any stray html entities in outgoing mail --- include/mail.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/mail.php b/include/mail.php index d1df774..1c8fb65 100644 --- a/include/mail.php +++ b/include/mail.php @@ -36,6 +36,7 @@ function mail_appdb($sEmailList,$sSubject,$sMsg) return; } + $sMsg = html_entity_decode($sMsg); $bResult = mail(APPDB_SENDER_EMAIL, "[AppDB] ".$sSubject, $sMsg, $sHeaders, "-f".APPDB_SENDER_EMAIL); if($bResult)