Dont override the mail encoding as utf-8 - we now store it in the db as ISO, so just use that (the default)

This commit is contained in:
james 2010-02-11 16:47:48 +00:00
parent a42e042bcc
commit 3442c2347d

View File

@ -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) {