diff options
author | Arun Persaud <arun@nubati.net> | 2013-01-20 09:02:58 -0800 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2013-01-20 09:02:58 -0800 |
commit | 64586775883969c933517edc541b6f5a0878bd7d (patch) | |
tree | 025bdfd5f84bd5119eded200d5593230b8b70a82 /include/functions.php | |
parent | 429de3b29eece0c547bce164f32a06ef84c5bacd (diff) | |
download | e-DoKo-64586775883969c933517edc541b6f5a0878bd7d.tar.gz e-DoKo-64586775883969c933517edc541b6f5a0878bd7d.tar.bz2 e-DoKo-64586775883969c933517edc541b6f5a0878bd7d.zip |
BUGFIX: fixed previous commit about sending mail in utf-8
Diffstat (limited to 'include/functions.php')
-rw-r--r-- | include/functions.php | 6 |
1 files changed, 3 insertions, 3 deletions
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) { |