Project

General

Profile

Bug #16001 ยป class.t3lib_htmlmail.php.patch

Administrator Admin, 2006-04-11 05:33

View differences:

t3lib/class.t3lib_htmlmail.php (working copy)
// Headerinfo:
var $recipient = '';
var $recipient_copy = ''; // This recipient (or list of...) will also receive the mail. Regard it as a copy.
var $recipient_blindcopy = ''; // This recipient (or list of...) will also receive the mail as a blind copy. Regard it as a copy.
var $subject = '';
var $from_email = '';
var $from_name = '';
......
$this->add_header('From: '.$this->from_email);
}
}
// Cc
if ($this->recipient_copy) {
$this->add_header('Cc: ' . $this->recipient_copy);
}
// Bcc
if ($this->recipient_blindcopy) {
$this->add_header('Bcc: ' . $this->recipient_blindcopy);
}
// Reply
if ($this->replyto_email) {
if ($this->replyto_name) {
    (1-1/1)