Closed EndOfSource closed 3 years ago
Hey,
I just installed the latest version and it seems like there is a little copy and past issue which came with the last merge.
{ "message": "syntax error, unexpected ')'", "exception": "ParseError", "file": "/var/www/app/vendor/motze92/office365-mail/src/Transport/Office365MailTransport.php", "line": 273 }
This is the code:
return array_merge( (array) $message->getTo(), (array) $message->getCc(), (array) $message->getBcc(), (array) $message->getReplyTo(), );
After changing the file inside the vendor directory, it works. I had to remove the last ","
return array_merge( (array) $message->getTo(), (array) $message->getCc(), (array) $message->getBcc(), (array) $message->getReplyTo() );
Hey,
I just installed the latest version and it seems like there is a little copy and past issue which came with the last merge.
This is the code:
After changing the file inside the vendor directory, it works. I had to remove the last ","