Skip to content
Snippets Groups Projects
Commit 31dcd928 authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Replacing php explode with general utility trimexplode

parent 872e8023
No related branches found
No related tags found
No related merge requests found
......@@ -124,8 +124,8 @@ class MailTemplateService {
$this->fromAddress = $this->tsSettings['mail']['default']['from'];
$this->mailMessage->setFrom($this->fromAddress);
$this->bccAddresses = explode(',', $this->tsSettings['mail']['default']['bcc']);
$this->ccAddresses = explode(',', $this->tsSettings['mail']['default']['cc']);
$this->bccAddresses = GeneralUtility::trimExplode(',', $this->tsSettings['mail']['default']['bcc']);
$this->bccAddresses = GeneralUtility::trimExplode(',', $this->tsSettings['mail']['default']['cc']);
$this->mailMessage->setBcc($this->bccAddresses);
$this->mailMessage->setBcc($this->ccAddresses);
}
......
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