Bug #25301
closedSetting "Reply-To" fails in class.t3lib_formmail.php
100%
Description
t3lib_formmail tries to set a "Reply-To:" Header but fails doing so because of a wrong call of method "addReplyTo()" from swiftmailer.
The method "addReplyTo()" of class "t3lib_mail_Message" (which extends Swift_Message) expects to parameters of "string" type.
But t3lib_formmail sets an array as argument to "addReplyTo()".
Original Code (line 232...):
$replyTo = $this->replyToName ? array($this->replyToAddress => $this->replyToName) : array($this->replyToAddress);
$this->mailMessage->addReplyTo($replyTo);
This can be fixed by using this line instead:
$this->mailMessage->addReplyTo($this->replyToAddress, $this->replyToName);
(issue imported from #M17916)
Updated by Jigal van Hemert over 13 years ago
Easiest solution was to use setReplyTo() and setCc(), which take the current array format.
Review at https://review.typo3.org/1129
Updated by Mr. Hudson over 13 years ago
Patch set 3 of change Ia3826d51f53ffe497f4c3b25957f0332fb89e81e has been pushed to the review server.
It is available at http://review.typo3.org/1442
Updated by Mr. Hudson over 13 years ago
Patch set 4 of change Ia3826d51f53ffe497f4c3b25957f0332fb89e81e has been pushed to the review server.
It is available at http://review.typo3.org/1442
Updated by Jigal van Hemert over 13 years ago
- Status changed from Accepted to Resolved
- % Done changed from 0 to 100
Applied in changeset 515d8b3122507df2c8e1e6b365e89f46a02e6633.