| If you want to place a series of text boxes on a form and
then email the text in the boxes to your email address, then add the following code to
your HTML document. Note: You must
prompt the user to enter their Full Name and Email address as this information is NOT
automatically obtained. If you don't do this then you have no way of determining where the
information came from.
Parameter names passed to mailgate are case-sensitive. Parameters "recipient", "subject" and "redirect" must be in lower-case.
<FORM METHOD="POST" ACTION="http://mailgate.server-mail.com/cgi-bin/mailgate">
<input type=hidden name="recipient" value="sales@acme.com.au">
<input type=hidden name="subject" value="Enter Subject">
<input type=hidden name="redirect" value="http://www.acme.com.au/feedback.htm">
Your Email address: <input type=text name="email"><BR>
Your Full Name: <input type=text name="realname"><BR>
Tell me what you think of me?
<TEXTAREA NAME= "comments" ROWS=3 COLS=50>Type Here</TEXTAREA>
<INPUT TYPE="SUBMIT" VALUE="Send Comments">
</FORM>
|