8.5.1 HERA
Here is how I got the Contact Us page to work with Freeola's settings:
In the "Contact Us Bulk Area",
Insert the following after
<actinic:variable Name="ValidationError"/> (line 9):
of course you must change the address and email accounts to your own settings
Here is how I got the Contact Us page to work with Freeola's settings:
In the "Contact Us Bulk Area",
Insert the following after
<actinic:variable Name="ValidationError"/> (line 9):
of course you must change the address and email accounts to your own settings
Code:
</form> <form method="post" action="http://your.website.com/cgi-bin/form_to_mail.php"> <input type="hidden" name="recipient" value="your@valid.freeola.address"> <input type="hidden" name="from" value="your@valid.freeola.address"> <input type="hidden" name="require" value="Name,Subject,EmailAddress,Message"> <input type="hidden" name="success_redirect" value="http://your.website.com/acatalog/desired_page.html">
Comment