parent
c614717a7e
commit
3d71323416
|
|
@ -1,6 +1,8 @@
|
|||
# PHPMailer Change Log
|
||||
|
||||
* Add support for [RFC2387 child element content-type hint](https://tools.ietf.org/html/rfc2387#section-3.1) in `multipart/related` structures.
|
||||
* Change header folding and param separation to use spaces instead of tabs
|
||||
* Use ; to separate multiple MIME header params
|
||||
* Add support for RFC3461 DSN messages
|
||||
* IMAP example code fixed
|
||||
* Use PHP temp streams instead of temp files
|
||||
|
|
|
|||
|
|
@ -2569,7 +2569,7 @@ class PHPMailer
|
|||
$body .= $mimepre;
|
||||
$body .= $this->textLine('--' . $this->boundary[1]);
|
||||
$body .= $this->headerLine('Content-Type', static::CONTENT_TYPE_MULTIPART_RELATED . ';');
|
||||
$body .= $this->textLine(' boundary="' . $this->boundary[2] . '"');
|
||||
$body .= $this->textLine(' boundary="' . $this->boundary[2] . '";');
|
||||
$body .= $this->textLine(' type="' . static::CONTENT_TYPE_TEXT_HTML . '"');
|
||||
$body .= static::$LE;
|
||||
$body .= $this->getBoundary($this->boundary[2], $bodyCharSet, '', $bodyEncoding);
|
||||
|
|
@ -2601,7 +2601,7 @@ class PHPMailer
|
|||
$body .= static::$LE;
|
||||
$body .= $this->textLine('--' . $this->boundary[1]);
|
||||
$body .= $this->headerLine('Content-Type', static::CONTENT_TYPE_MULTIPART_RELATED . ';');
|
||||
$body .= $this->textLine(' boundary="' . $this->boundary[2] . '"');
|
||||
$body .= $this->textLine(' boundary="' . $this->boundary[2] . '";');
|
||||
$body .= $this->textLine(' type="' . static::CONTENT_TYPE_TEXT_HTML . '"');
|
||||
$body .= static::$LE;
|
||||
$body .= $this->getBoundary($this->boundary[2], $bodyCharSet, static::CONTENT_TYPE_TEXT_HTML, $bodyEncoding);
|
||||
|
|
@ -2642,7 +2642,7 @@ class PHPMailer
|
|||
$body .= static::$LE;
|
||||
$body .= $this->textLine('--' . $this->boundary[2]);
|
||||
$body .= $this->headerLine('Content-Type', static::CONTENT_TYPE_MULTIPART_RELATED . ';');
|
||||
$body .= $this->textLine(' boundary="' . $this->boundary[3] . '"');
|
||||
$body .= $this->textLine(' boundary="' . $this->boundary[3] . '";');
|
||||
$body .= $this->textLine(' type="' . static::CONTENT_TYPE_TEXT_HTML . '"');
|
||||
$body .= static::$LE;
|
||||
$body .= $this->getBoundary($this->boundary[3], $bodyCharSet, static::CONTENT_TYPE_TEXT_HTML, $bodyEncoding);
|
||||
|
|
|
|||
Loading…
Reference in New Issue