+2008-10-14 Dmitry Dulepov <dmitry@typo3.org>
+
+ * Fixed bug #9523: class.t3lib_htmlmail.php produces null headers in HTML messages
+
2008-10-13 Ernesto Baschny <ernst@cron-it.de>
* Fixed issue #9533: Made substituteMarkerArrayCached not so strict. Still with type hinting, but also allowing the null (uninitialized var) to be passed (to prevent several older extensions from breaking).
* @return string the content type
*/
public function getHTMLContentType() {
- return (count($this->theParts['html']['media']) ? 'multipart/related;' : 'multipart/alternative;');
+ return (count($this->theParts['html']['media']) ? 'multipart/related' : 'multipart/alternative');
}