From c7325c120f872636131c93e56ad8bdad85311c16 Mon Sep 17 00:00:00 2001 From: Chris Ege Date: Tue, 11 Jun 2013 11:25:51 -0500 Subject: added newlines to end of email header when send_multipart === false --- system/libraries/Email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/libraries') 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 { -- cgit v1.2.3-24-g4f1b