Project

General

Profile

Bug #18701 » 8522.diff

Administrator Admin, 2008-04-25 16:52

View differences:

t3lib/class.t3lib_htmlmail.php (working copy)
// From
if ($this->from_email) {
if ($this->from_name) {
if ($this->from_name && TYPO3_OS!='WIN') {
$this->add_header('From: '.$this->from_name.' <'.$this->from_email.'>');
} else {
$this->add_header('From: '.$this->from_email);
......
}
// Reply
if ($this->replyto_email) {
if ($this->replyto_name) {
if ($this->replyto_name && TYPO3_OS!='WIN') {
$this->add_header('Reply-To: '.$this->replyto_name.' <'.$this->replyto_email.'>');
} else {
$this->add_header('Reply-To: '.$this->replyto_email);
(1-1/7)