Bug #22064 » typo3_13435.patch
typo3_src/t3lib/class.t3lib_htmlmail.php 2010-02-05 14:46:22.000000000 +0100 | ||
---|---|---|
// From
|
||
if ($this->from_email) {
|
||
if ($this->from_name && !t3lib_div::isBrokenEmailEnvironment()) {
|
||
$this->add_header('From: '.$this->from_name.' <'.$this->from_email.'>');
|
||
$this->add_header('From: "'.$this->from_name.'" <'.$this->from_email.'>');
|
||
} else {
|
||
$this->add_header('From: '.$this->from_email);
|
||
}
|