diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-06-06 20:51:59 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-06-06 20:51:59 +0200 |
commit | 27a5aa1f5c85fb7e53eda5ab0dd3efcbd70b2338 (patch) | |
tree | 9f60e13bb105a0240a5c1790be4dda59b70abbc2 /system/libraries/Email.php | |
parent | 57aea15ffffd3c92080380aa188067039c4696b8 (diff) |
added quoted-printable headers when $this->send_multipart has been manually changed to FALSE
Diffstat (limited to 'system/libraries/Email.php')
-rw-r--r-- | system/libraries/Email.php | 3 |
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
{
|