Skip to content
Snippets Groups Projects
Commit bf9cd789 authored by Jakob P's avatar Jakob P
Browse files

Issue #3214505 by lawxen: $to can't be empty string

parent 595de900
No related branches found
No related tags found
1 merge request!34Draft: Automated Project Update Bot fixes
......@@ -291,6 +291,9 @@ class SMTPMailSystem implements MailInterface, ContainerFactoryPluginInterface {
// Create the list of 'To:' recipients.
$torecipients = explode(',', $to);
foreach ($torecipients as $torecipient) {
if (empty($torecipient)) {
continue;
}
$to_comp = $this->getComponents($torecipient);
$mailer->AddAddress($to_comp['email'], $to_comp['name']);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment