Bug #20046 » 10480.diff
t3lib/class.t3lib_htmlmail.php 2010-03-03 15:47:38.000000000 +0100 | ||
---|---|---|
$mailWasSent = mail($this->from_email,
|
||
$theParts[0],
|
||
$theParts[1],
|
||
'From: ' . $recipient,
|
||
'From: ' . $recipient . "\n" . $this->plain_text_header,
|
||
$returnPath);
|
||
} else {
|
||
$mailWasSent = mail($this->from_email,
|
||
$theParts[0],
|
||
$theParts[1],
|
||
'From: ' . $recipient);
|
||
'From: ' . $recipient . "\n" . $this->plain_text_header);
|
||
}
|
||
}
|
||
if ($this->returnPath) {
|