Contact Us Not work when use smtp mail
Posted: Sat Mar 05, 2016 1:34 pm
When we use smtp mail, contact Us Form not working.
catalog/controller/information/contact.php:
that code will cause authority error.
To solve this problem, I change this code into:
it's work fine for me
catalog/controller/information/contact.php:
Code: Select all
$mail->setTo($this->config->get('config_email'));
$mail->setFrom($this->request->post['email']);
To solve this problem, I change this code into:
Code: Select all
$mail->setTo($this->config->get('config_email'));
$mail->setFrom($this->config->get('config_email'));
$mail->setReplyTo($this->request->post['email']);