Bug #18701 » 8522.diff
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);
|