From 64586775883969c933517edc541b6f5a0878bd7d Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 20 Jan 2013 09:02:58 -0800 Subject: BUGFIX: fixed previous commit about sending mail in utf-8 --- include/functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 47e8089..191823d 100644 --- a/include/functions.php +++ b/include/functions.php @@ -218,9 +218,9 @@ function sendmail($To,$Subject,$message) if(isset($EMAIL_REPLY)) $header .= "From: e-DoKo daemon <$EMAIL_REPLY>\r\n"; - $headers .= "Content-Type: text/plain; charset = \"UTF-8\";\r\n"; - $headers .= "Content-Transfer-Encoding: 8bit\r\n"; - $headers .= "\r\n"; + $header .= "Content-Type: text/plain; charset = \"UTF-8\";\r\n"; + $header .= "Content-Transfer-Encoding: 8bit\r\n"; + $header .= "\r\n"; if($debug) { -- cgit v1.2.3-18-g5258