From 3442c2347d7aa62ca468e0f4c8e3be66b9e161d3 Mon Sep 17 00:00:00 2001 From: james Date: Thu, 11 Feb 2010 16:47:48 +0000 Subject: [PATCH] Dont override the mail encoding as utf-8 - we now store it in the db as ISO, so just use that (the default) --- common.inc.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/common.inc.php b/common.inc.php index a636506..09effcc 100644 --- a/common.inc.php +++ b/common.inc.php @@ -974,8 +974,6 @@ function email_send_new($to,$from,$subject,$body,$bodyhtml="") { $mail->setFrom($from); $mail->setSubject($subject); $mail->setText($body); - $mail->setTextCharset("utf-8"); - $mail->setHTMLCharset("utf-8"); //only add the html if we have it if($bodyhtml) {