|
How
to use Form to email
Sample
as shown below
Html
code as shown below
<form
method="POST" action="/cgi-bin/form.cgi">
<input type="hidden" name="subject"
value="Enquiry Form Testing">
<input type="hidden" name="to"
value="info@homepage.com.hk">
Your Name: <input type="text" name="name">
<br>
Your Email: <input type="text" name="email">
<br>
Your Web Site: <input type="text" name="web
site"> <br>
Enquiry:<br> <textarea rows="5" name="enquiry"
cols="40"></textarea>
<input type="submit" name="Submit"
value="Submit">
<input type="reset" name="Submit2"
value="Reset">
</form>
|