From 3f9edb4c3ec29b5b807d99da479333b62a406686 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Fri, 13 Jan 2006 12:14:38 -0500 Subject: [PATCH] Switched to full UTF-8 support --- program/steps/mail/sendmail.inc | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index ee27818..ab0c6ed 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -80,9 +80,6 @@ $input_charset = $CHARSET; $message_charset = isset($_POST['_charset']) ? $_POST['_charset'] : $input_charset; -// unset global var -$CHARSET = ''; - $mailto_regexp = array('/[,;]\s*[\r\n]+/', '/[\r\n]+/', '/[,;]\s*$/m'); $mailto_replace = array(', ', ', ', ''); @@ -242,9 +239,6 @@ $sent = mail($headers_enc['To'], $headers_enc['Subject'], $msg_body, $header_str, "-f$from"); } - -// resore page charset -$CHARSET = $input_charset; // return to compose page if sending failed if (!$sent) -- Gitblit v1.9.1