summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2008-06-06 20:51:59 +0200
committerDerek Jones <derek.jones@ellislab.com>2008-06-06 20:51:59 +0200
commit27a5aa1f5c85fb7e53eda5ab0dd3efcbd70b2338 (patch)
tree9f60e13bb105a0240a5c1790be4dda59b70abbc2 /system
parent57aea15ffffd3c92080380aa188067039c4696b8 (diff)
added quoted-printable headers when $this->send_multipart has been manually changed to FALSE
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Email.php3
1 files changed, 2 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
{