简体   繁体   中英

Magento Contact Form - Success but not receive - Same Domain

I am running Magento 1.9.1.0

Suppose that my web domain is www.aaaaa.com When I set "Send Emails To" as support@aaaaa.com at "System> Configuration> General> Contacts", the contact form returns a success message but nothing is actually sent to my email (support@aaaaa.com)

However, When I set it to a different domain, eg support@bbbbb.com, the contact form returns the same success message and this time the email is received correctly at support@bbbbb.com

How do I fix this issue? I wish to use the same domain. Please help.

Try to set cron job , take a look for cron job

Magento 1.9.1. Emails via CRON job

if your theme RWD than change this in contact file

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

to

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM