|
@@ 888-890 (lines=3) @@
|
| 885 |
|
$result .= $this->AddrAppend('From', $from); |
| 886 |
|
|
| 887 |
|
/* sendmail and mail() extract Cc from the header before sending */ |
| 888 |
|
if((($this->Mailer == 'sendmail') || ($this->Mailer == 'mail')) && (count($this->cc) > 0)) { |
| 889 |
|
$result .= $this->AddrAppend('Cc', $this->cc); |
| 890 |
|
} |
| 891 |
|
|
| 892 |
|
/* sendmail and mail() extract Bcc from the header before sending */ |
| 893 |
|
if((($this->Mailer == 'sendmail') || ($this->Mailer == 'mail')) && (count($this->bcc) > 0)) { |
|
@@ 893-895 (lines=3) @@
|
| 890 |
|
} |
| 891 |
|
|
| 892 |
|
/* sendmail and mail() extract Bcc from the header before sending */ |
| 893 |
|
if((($this->Mailer == 'sendmail') || ($this->Mailer == 'mail')) && (count($this->bcc) > 0)) { |
| 894 |
|
$result .= $this->AddrAppend('Bcc', $this->bcc); |
| 895 |
|
} |
| 896 |
|
|
| 897 |
|
if(count($this->ReplyTo) > 0) { |
| 898 |
|
$result .= $this->AddrAppend('Reply-To', $this->ReplyTo); |