Reply-To in mail.php
Posted: Fri Sep 18, 2015 5:17 am
v 2.0.3.1, in system/libary/mail.php, line 103-107:
I believe the "else" part is wrong. It should be:
Code: Select all
if (!$this->reply_to) {
$header .= 'Reply-To: =?UTF-8?B?' . base64_encode($this->sender) . '?=' . ' <' . $this->from . '>' . $this->newline;
} else {
$header .= 'Reply-To: =?UTF-8?B?' . base64_encode($this->reply_to) . '?=' . ' <' . $this->from . '>' . $this->newline;
}
Code: Select all
$header .= 'Reply-To: =?UTF-8?B?' . base64_encode($this->sender) . '?=' . ' <' . $this->reply_to . '>' . $this->newline;