diff options
author | Andrey Andreev <narf@devilix.net> | 2013-06-24 10:50:16 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-06-24 10:50:16 +0200 |
commit | c0063169dde32cbd617fb6d535b569745c2d07f8 (patch) | |
tree | b9bf03947cd7633a77c0d096c3ed5ade0eb2e7aa /system/libraries/Email.php | |
parent | 4a86e3c896d5d5f4b9b8c63fbd857cd9084fe967 (diff) | |
parent | c7325c120f872636131c93e56ad8bdad85311c16 (diff) |
Merge pull request #2484 from chrisege/develop
added newlines to end of email header when send_multipart === false
Diffstat (limited to 'system/libraries/Email.php')
-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 { |