Magento 1.9.0.1 – Contact Form Not Sending

  • by

Unfortunately the RWD theme contact form contains an invalid link on the post target of the form.

Currently the link is:

<form action="<?php echo $this->getFormAction(); ?>" id="contactForm" method="post">

However, for the form to work correctly, you should change it to:

<form action="<?php echo Mage::getUrl(); ?>contacts/index/post/" id="contactForm" method="post">

Hopefully that should fix it for you!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

This site uses Akismet to reduce spam. Learn how your comment data is processed.