Skip to content
Snippets Groups Projects
Commit 0af33392 authored by Carsten  Rose's avatar Carsten Rose
Browse files

B6562: sendmail: redirect all mail - the sender is replaced too.

parent 9fd33232
No related branches found
No related tags found
No related merge requests found
Pipeline #785 passed
......@@ -69,6 +69,7 @@ class SendMail {
$addBody .= 'TO: ' . $mailConfig[SENDMAIL_TOKEN_RECEIVER] . PHP_EOL;
$addBody .= 'CC: ' . $mailConfig[SENDMAIL_TOKEN_RECEIVER_CC] . PHP_EOL;
$addBody .= 'BCC: ' . $mailConfig[SENDMAIL_TOKEN_RECEIVER_BCC] . PHP_EOL;
$addBody .= 'SENDER: ' . $mailConfig[SENDMAIL_TOKEN_SENDER] . PHP_EOL;
$addBody .= PHP_EOL . "==========================================" . PHP_EOL . PHP_EOL;
// Check if the given body is a HTML body.
......@@ -81,6 +82,7 @@ class SendMail {
$mailConfig[SENDMAIL_TOKEN_RECEIVER] = $redirectAllMail;
$mailConfig[SENDMAIL_TOKEN_RECEIVER_CC] = '';
$mailConfig[SENDMAIL_TOKEN_RECEIVER_BCC] = '';
$mailConfig[SENDMAIL_TOKEN_SENDER] = $redirectAllMail;
}
$mailConfig = $this->setDefault($mailConfig);
......@@ -123,6 +125,9 @@ class SendMail {
* @throws DownloadException
* @throws UserFormException
* @throws UserReportException
* @throws \PhpOffice\PhpSpreadsheet\Exception
* @throws \PhpOffice\PhpSpreadsheet\Reader\Exception
* @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
*/
private function sendEmail(array $mailConfig) {
$args = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment