diff options
author | Chris Ege <chrisege@gmail.com> | 2013-06-11 18:25:51 +0200 |
---|---|---|
committer | Chris Ege <chrisege@gmail.com> | 2013-06-11 18:25:51 +0200 |
commit | c7325c120f872636131c93e56ad8bdad85311c16 (patch) | |
tree | d3079ab642e3d15509f3ce1df1606fc8fff7bf40 /system | |
parent | 5b3be33299d41f9272c7c9e3f2d3a3161c1d11b4 (diff) |
added newlines to end of email header when send_multipart === false
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Email.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php index 10253c796..0c83a8ba9 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -1275,7 +1275,7 @@ class CI_Email { if ($this->send_multipart === FALSE) { $hdr .= 'Content-Type: text/html; charset='.$this->charset.$this->newline - .'Content-Transfer-Encoding: quoted-printable'; + .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline; } else { |