Do you have FormMail?
Yes, FormMail cgi scripting is preinstalled on NetValue’s Linux hosting servers.
Simply place the following on the appropriate page and amend the ‘value’ fields to your own requirements. You will also need to remove any ‘*’ .
<*FORM METHOD=POST ACTION=”http://yourdomain.com/cgi-sys/FormMail.cgi”*>
<*input TYPE=”hidden” name=”recipient” value=”sales@yourdomain.com”*>
<*input TYPE=”hidden” name=”subject” value=”Order Form”*>
<*input TYPE=”hidden” name=”required” value=”name, email”*>
<*input TYPE=”hidden” name=”redirect” value=”http://yourdomain.com”*>
Please ensure you replace “yourdomain.com”, with your real domain name, and remove the “*” from the code.
Below is an example of using formmail, for the domain ‘slimming.com’.
<*FORM ACTION=”http://slimming.com/cgi-sys/FormMail.cgi” METHOD=”POST”*>
<*input TYPE=”hidden” NAME=recipient VALUE=”orders@slimming.com “*>
<*input TYPE=”hidden” NAME=subject VALUE=” slimming.com Order Form”*>
<*input TYPE=”hidden” NAME=required value=”name, email”>
<*input TYPE=”hidden” NAME=redirect value=”http://slimming.com/thankyou.html”*>
Can we secure Formmail?
Yes.
If the webpage you are trying is a secure form, the action the form performs must be a secure action as well. We use an example of a domain name of slimming.com and an order form called orderform.html.
The orderform.html file is uploaded into the normal web account directory.
The code you would insert into your webpage is as follows:
<*FORM ACTION=”https://www.safetopay.com/cgi-sys/FormMail.cgi” METHOD=”POST”*>
<*INPUT TYPE=”hidden” NAME=recipient VALUE=”orders@slimming.com”*>
<*INPUT TYPE=”hidden” NAME=subject VALUE=”slimming.com Order Form”*>
<*INPUT TYPE=”hidden” NAME=redirect VALUE=”https://www.safetopay.com/slimming.com/thankyou.html”*>