Magento-SMTP-Pro-Email-Extension icon indicating copy to clipboard operation
Magento-SMTP-Pro-Email-Extension copied to clipboard

Unable to send your request, please try again later!!

Open jm111015 opened this issue 8 years ago • 3 comments

I 've got this error on my contact us form, and now I can't use my form. My Magento version is 1.9.1.1.

Any help is really appreciated.

Thank you.

jm111015 avatar Jan 25 '17 06:01 jm111015

i have the same issue in magento 1.9.0.1.Any Solution is there. i am using Aschroder's SMTP pro extension.when its disabled the contact form is working . when its enable the contact form is not submitted and throws an error "Unable to submit your request. Please, try again later".chacked in exception log it shows exception 'Zend_Mail_Protocol_Exception' with message 'Connection timed out' in /home/silvergal/public_html/lib/Zend/Mail/Protocol/Abstract.php:277

ramsampathi avatar Nov 24 '17 15:11 ramsampathi

Contact form works when this module is disabled.

But when enabled, all email (order, invoice etc) are sent as well as TEST EMAIL, but not contact form.

Checked log, no error. Keeps saying Unable to submit your request. Please, try again later

Just updated the extension today to it's latest version.

adarshkhatri avatar Jan 08 '18 01:01 adarshkhatri

Alright, have debugged and found that one new line that I had added for "REPLY TO" was causing the issue for contact us form to work. I had to add this code since sender email is always set as "Gmail" email ID which is used to authenticate in Email Connection. #216

I had to add like this

if(Mage::getDesign()->getArea() == 'adminhtml'){ //only can set if email sending from backend
			$mail->setReplyTo($this->getSenderEmail(), $this->getSenderName());
		}

adarshkhatri avatar Jan 08 '18 03:01 adarshkhatri