<form method="post" action="http://www.inca-internet.com:/cgi-bin/mailform.exe" name="form">
<input type="hidden" name="_1_MailTo" value="tellme@inca-internet.com">
<input type="hidden" name="_1_MailServer" value="mail.inca-internet.com">
<input type="hidden" name="_1_MailSubject" value="Enquiry from web site">
<input type="hidden" name="_1_FailureDocument" value="contact_failure.htm">
<input type="hidden" name="_1_MailFrom" value="visitor@website">
<input type="hidden" name="_1_SuccessDocument" value="contact_success.htm">
<input type="hidden" name="_1_RequiredFieldDocument" value="contact_fieldmissing.htm">
The first part of the form contains all the system parameters. You will notice that all parameters
begin with _1_. This tells the form to mail program that these are system parameters. A list
of the system parameters is given below:-| _1_MailTo | E-mail address of person to send the mial to |
| _1_MailServer | Your outgoing SMTP mail server |
| _1_MailSubject | Text to insert in "Subject" line of mail |
| _1_FailureDocument | Page to display if mail to form fails |
| _1_MailFrom | Description to say wher mail is from ie form website |
| _1_SuccessDocument | Page to display when mail delivery succeeds |
| _1_InvalidCardDocument | Page to display if a credit card field is incorrectly filled in |
| _1_RequiredFieldDocument | Page to display if a compulsory field has not been filled in |
<table border="1" align="center">
<tr bgcolor="#E5E5D1">
<td width="204">Your Name (required)</td>
<td width="216">
<div align="center">
<input type="text" name="_4_name" size="29">
</div>
</td>
</tr>
<tr bgcolor="#E5E5D1">
<td height="4" width="204">E-mail (required)</td>
<td height="4" width="216">
<div align="center">
<input type="text" name="_4_email" size="29">
</div>
</td>
</tr>
<tr bgcolor="#E8E8E5">
<td width="204">Comments</td>
<td width="216">
<textarea name="_5_comments" cols="25" rows="3"></textarea>
</td>
</tr>
<tr bgcolor="#E5E5D1">
<td width="204" height="27">
<input type="submit" name="_2_submit" value="Send enquiry">
</td>
<td width="216" height="27"> </td>
</tr>
</table>
</form>
All the field names in the form begin with _2_, _3_, _4_ or _5_. The meaning of each is
as follows| _2_ | Do not include the contents of this field in e-mail |
| _3_ | This is a credit card field |
| _4_ | User must fill in this field |
| _5_ | This field is optional |