Skip to content
Snippets Groups Projects
Commit 1ffd0252 authored by Luke Zagata's avatar Luke Zagata Committed by Brady
Browse files

Issue #3210891 by lzagata, Perignon: WSOD trying to send mail to multiple...

Issue #3210891 by lzagata, Perignon: WSOD trying to send mail to multiple addresses : SendGrid\Exception\TypeException: "$name" must be a string. Got:
parent db9b477f
No related branches found
No related tags found
3 merge requests!30Issue #2971991 by amykhailova, code-drupal: "Cc" Recipient not receiving email...,!25Issue #2979620 by Baik Ho: 400 Bad Request - Handle exception returned from...,!10Issue #2848810 by Perignon: Notice: Account for Reply-To being all lower case....
......@@ -246,7 +246,7 @@ class SendGridMail implements MailInterface, ContainerFactoryPluginInterface {
$sendtosarry = explode(',', $message['to']);
foreach ($sendtosarry as $value) {
$sendtoarrayparsed = $this->parseAddress($value);
$personalization0->addTo(new To($sendtoarrayparsed[0], isset($sendtoarrayparsed[1])) ? $sendtoarrayparsed[1] : NULL);
$personalization0->addTo(new To($sendtoarrayparsed[0], isset($sendtoarrayparsed[1]) ? $sendtoarrayparsed[1] : NULL));
}
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment