You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to Mailjet API, FROM sender must be an array, not an array of array like TO or CC fields.
So line 92 of MailjetEmailMessage class, you must remove the brackets to change
$this->from[] = [
into
$this->from = [
Thanks for the script however.