summaryrefslogtreecommitdiffstats
path: root/system/libraries/Email.php
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2009-02-10 19:33:01 +0100
committerDerek Jones <derek.jones@ellislab.com>2009-02-10 19:33:01 +0100
commita45e761adedf682aed63aba88730f4929eefc159 (patch)
tree239c14780effcff998b8b85a47de6294780dda3f /system/libraries/Email.php
parent5f386a3c791fdb97bd403c4469b79578ae0af702 (diff)
added an additional newline for MUAs that require a double line break between multipart headers and the ignored MIME message area
http://codeigniter.com/bug_tracker/bug/6681/
Diffstat (limited to 'system/libraries/Email.php')
-rw-r--r--system/libraries/Email.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php
index 99a5ea385..7539fe54a 100644
--- a/system/libraries/Email.php
+++ b/system/libraries/Email.php
@@ -1010,7 +1010,7 @@ class CI_Email {
}
else
{
- $hdr .= "Content-Type: multipart/alternative; boundary=\"" . $this->_alt_boundary . "\"" . $this->newline;
+ $hdr .= "Content-Type: multipart/alternative; boundary=\"" . $this->_alt_boundary . "\"" . $this->newline . $this->newline;
$hdr .= $this->_get_mime_message() . $this->newline . $this->newline;
$hdr .= "--" . $this->_alt_boundary . $this->newline;
@@ -1051,7 +1051,7 @@ class CI_Email {
break;
case 'plain-attach' :
- $hdr .= "Content-Type: multipart/".$this->multipart."; boundary=\"" . $this->_atc_boundary."\"" . $this->newline;
+ $hdr .= "Content-Type: multipart/".$this->multipart."; boundary=\"" . $this->_atc_boundary."\"" . $this->newline . $this->newline;
$hdr .= $this->_get_mime_message() . $this->newline . $this->newline;
$hdr .= "--" . $this->_atc_boundary . $this->newline;
@@ -1071,7 +1071,7 @@ class CI_Email {
break;
case 'html-attach' :
- $hdr .= "Content-Type: multipart/".$this->multipart."; boundary=\"" . $this->_atc_boundary."\"" . $this->newline;
+ $hdr .= "Content-Type: multipart/".$this->multipart."; boundary=\"" . $this->_atc_boundary."\"" . $this->newline . $this->newline;
$hdr .= $this->_get_mime_message() . $this->newline . $this->newline;
$hdr .= "--" . $this->_atc_boundary . $this->newline;