Open LeonHunterUk opened 7 years ago
Upon requiring bogardo/mailgun-magento2 with composer, I have to edit the Mail/Transport.php file included with the plugin and change line 97 from:
foreach ($message['to'] as $to) {
to:
foreach ($this->message->getRecipients() as $to) {
Had to do the same. Requested the file change in repo. Thanks for the code fix.
I'm having the same issue, PR fixed it.
Upon requiring bogardo/mailgun-magento2 with composer, I have to edit the Mail/Transport.php file included with the plugin and change line 97 from:
foreach ($message['to'] as $to) {
to:
foreach ($this->message->getRecipients() as $to) {