summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2013-06-24 10:50:16 +0200
committerAndrey Andreev <narf@devilix.net>2013-06-24 10:50:16 +0200
commitc0063169dde32cbd617fb6d535b569745c2d07f8 (patch)
treeb9bf03947cd7633a77c0d096c3ed5ade0eb2e7aa
parent4a86e3c896d5d5f4b9b8c63fbd857cd9084fe967 (diff)
parentc7325c120f872636131c93e56ad8bdad85311c16 (diff)
Merge pull request #2484 from chrisege/develop
added newlines to end of email header when send_multipart === false
-rw-r--r--system/libraries/Email.php2
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
{