|
@@ 198-200 (lines=3) @@
|
| 195 |
|
$headers .= 'Reply-To: ' . $this->from . PHP_EOL; |
| 196 |
|
} |
| 197 |
|
|
| 198 |
|
if (!empty($this->carbonCopies)) { |
| 199 |
|
$headers .= 'CC: ' . implode(',', $this->carbonCopies) . PHP_EOL; |
| 200 |
|
} |
| 201 |
|
|
| 202 |
|
if (!empty($this->blindCarbonCopies)) { |
| 203 |
|
$headers .= 'BCC: ' . implode(',', $this->blindCarbonCopies) . PHP_EOL; |
|
@@ 202-204 (lines=3) @@
|
| 199 |
|
$headers .= 'CC: ' . implode(',', $this->carbonCopies) . PHP_EOL; |
| 200 |
|
} |
| 201 |
|
|
| 202 |
|
if (!empty($this->blindCarbonCopies)) { |
| 203 |
|
$headers .= 'BCC: ' . implode(',', $this->blindCarbonCopies) . PHP_EOL; |
| 204 |
|
} |
| 205 |
|
|
| 206 |
|
$headers .= 'Content-Type: multipart/mixed; boundary = ' . $boundary . PHP_EOL; |
| 207 |
|
|