diff options
-rw-r--r-- | system/libraries/Email.php | 3 | ||||
-rw-r--r-- | user_guide/changelog.html | 1 |
2 files changed, 3 insertions, 1 deletions
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</p> <li>Removed some unused variables from the code (#4563).</li>
<li>Fixed a bug where <kbd>having()</kbd> was not adding an = into the statement (#4568).</li>
<li>Fixed assorted user guide typos or examples (#4574).</li>
+ <li>Added quoted-printable headers to Email class when the multi-part override is used.</li>
</ul>
<h2>Version 1.6.2</h2>
|