If you are developing your own web site and you want to
add a form into you site, you need to add some HTML code into the form.
It should look something like this:
<form action="please contact us for this address" method=post>
<input type=hidden name="recipient" value="enquiries@adroit.net">
<input type=hidden name="subject" value="Enquiry from Adroit Web Site">
<input type="hidden" name="redirect" value="http://www.adroit.net/thanks.html">
</form>
Where the first line the start of the form and also specifies the location of the cgi-bin on the Adroit server. The second line indicates who the form is being sent to after it is submitted. The third line is the subject of the email being sent, while the next line is the full URL of where the sender is getting redirected to after they submit the form. The last line is the ending of the form.
There is obviously some other code the goes in between the <form> and the </form> tag such as the 'submit' button and a 'clear form' button. However the other fields are entirely up to you. Your web editor should help you with this though. Please note that if your web site is being hosted by another ISP, our cgi-bin will not accept your requests for form mail.
If you have any further questions, please contact us. |