Actions
Bug #25415
closedt3lib_formmail: addReplyTo method of Swift Mailer SimpleMessage, called with wrong arguments
Start date:
2011-03-29
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
$replyTo = $this->replyToName ? array($this->replyToAddress => $this->replyToName) : array($this->replyToAddress);
$this->mailMessage->addReplyTo($replyTo);
t3lib_formmail calls the addReplyTo method with an array as $replyTo argument. But the SimpleMessage::addReplyTo method takes the reply to address as string and the reply to name as optional string.
This should be changed. Will fix this in a minute.
Actions