Mandrill Controller Reply-To Bug
-
We found a bug with the way Reply-To headers are set in
MandrillController.php
.On line 76, there is a call to
$phpmailer->getReplyToAddresses()
that returns an associative array. On line 77, the condition checks it as if it is a standard array.We were able to resolve it by changing line 76 to
array_values($phpmailer->getReplyToAddresses())
, converting the associative array to a standard array.This may be an issue with the other controllers as well; Mandrill is what we use so that’s where we found the bug.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.