Bug #19592 ยป 9769_01.diff
t3lib/class.t3lib_formmail.php (working copy) | ||
---|---|---|
* [from_name]: Sender name. If not set, [name] is used
|
||
* [replyto_email]: Reply-to email. If not set [from_email] is used
|
||
* [replyto_name]: Reply-to name. If not set [from_name] is used
|
||
* [organisation]: Organisation (header)
|
||
* [organisation]: Organization (header)
|
||
* [priority]: Priority, 1-5, default 3
|
||
* [html_enabled]: If mail is sent as html
|
||
* [use_base64]: If set, base64 encoding will be used instead of quoted-printable
|
t3lib/class.t3lib_htmlmail.php (working copy) | ||
---|---|---|
$this->add_header('Reply-To: '.$this->replyto_email);
|
||
}
|
||
}
|
||
// Organisation
|
||
// Organization, using american english spelling (organization / organisation) as defined in RFC 1036 / 2076
|
||
if ($this->organisation) {
|
||
$this->add_header('Organisation: '.$this->organisation);
|
||
$this->add_header('Organization: ' . $this->organisation);
|
||
}
|
||
// mailer
|
||
if ($this->mailer) {
|