- Edited
I know this is an old thread, but has anyone had success with getting the reply-to address to work? We also get emails where we need to use the reply-to address instead of the from address. I am using IMAP and have edited class.mailfetch.php (at line 14) from this:
function getHeaderInfo($mid) {
$headerinfo=imap_headerinfo($this->mbox,$mid);
$sender=$headerinfo->from;
to say:
function getHeaderInfo($mid) {
$headerinfo=imap_headerinfo($this->mbox,$mid);
$sender=$headerinfo->reply-to;
and the program stops retrieving emails when I know there are emails on the server. This is the only issue holding me back from using OSTicket. Any help would be appreciated!
Thanks in advance,
Tim