From 27a5aa1f5c85fb7e53eda5ab0dd3efcbd70b2338 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Fri, 6 Jun 2008 18:51:59 +0000 Subject: added quoted-printable headers when $this->send_multipart has been manually changed to FALSE --- system/libraries/Email.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'system') diff --git a/system/libraries/Email.php b/system/libraries/Email.php index 8eb47dc85..e02c83d19 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -993,7 +993,8 @@ class CI_Email { if ($this->send_multipart === FALSE) { - $hdr .= "Content-Type: text/html;". $this->newline; + $hdr .= "Content-Type: text/html; charset=" . $this->charset . $this->newline; + $hdr .= "Content-Transfer-Encoding: quoted-printable"; } else { -- cgit v1.2.3-24-g4f1b