Magento 1.9 – Contact Us Form Not Working

contact-formcontact-usemailmagento-1.9

I am using Magento 1.9. I had configure the mail setting and my newsletter mail also working properly.

But when I tried "About Us" it show me the below error message

Unable to submit your request. Please, try again later

i had also go through the code. The $mail->send(); function generate an exception

Unable to send mail.

i am not getting the issue.
Please help me to solve same.

Best Answer

After searching lot's of thing i found solution for this problem. This issue can solve by disabling mailQueue.

/app/code/core/Mage/Core/Model/Email/Template.php

Change Line

if ($this->hasQueue() && $this->getQueue() instanceof Mage_Core_Model_Email_Queue) {

To

if (!($this->hasQueue() && $this->getQueue() instanceof Mage_Core_Model_Email_Queue)) {

for more details visit here

But there may be case that it can affect other mail module