aschroder / Magento-SMTP-Pro-Email-Extension

Full SMTP and Gmail/Google Apps Email support for Magento
aschroder.com
334 stars 208 forks source link

Sender Email and Reply To doesn´t match #267

Open Julen10 opened 5 years ago

Julen10 commented 5 years ago

I was reading some issues about how to configure the ReplyTo header so I made this:

$mail->setFrom($this->getSenderEmail(), $this->getSenderName()); $mail->setReplyTo($this->getSenderEmail(), $this->getSenderName());

The problem is that the From is filled with the email that I configure as a SMTP sender and the Reply To is filled correctly with the "Sales Representative" email.

How is that possible?