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 ++- user_guide/changelog.html | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) 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 { diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 110f1c27b..469a95087 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -102,6 +102,7 @@ SVN Revision: not currently released

  • Removed some unused variables from the code (#4563).
  • Fixed a bug where having() was not adding an = into the statement (#4568).
  • Fixed assorted user guide typos or examples (#4574).
  • +
  • Added quoted-printable headers to Email class when the multi-part override is used.
  • Version 1.6.2

    -- cgit v1.2.3-24-g4f1b