Skip to content
Snippets Groups Projects
Commit 70ddda1d authored by Wayne Eaker's avatar Wayne Eaker
Browse files

Issue #3370855: Sending mails to multiple email addresses does not work

parent 3246ba86
Branches
Tags
No related merge requests found
......@@ -261,10 +261,7 @@ class SymfonyMailer implements MailInterface, ContainerFactoryPluginInterface {
}
}
$to = $message['to'];
if (!is_array($message['to'])) {
$to = [$message['to']];
}
$to = $this->parseMailboxes($message['to']);
$email->to(...$to);
if (!empty($message['headers']['From'])) {
$email->from($message['headers']['From']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment