<class home>  <forms>   <back   next>

Submitting Form Information to Email

If you don't want to use CGI, you can always have the results emailed to you.
This doesn't work with Version 4 browsers or with Outlook.

1. Just use an email address for the action value and add the data encryption type.

-mailto:joe@hotmail.com (Be sure to put "mailto:" in front of the address)
-enctype="text/plain"

2. And be sure to have a submit button.


ex.

name:

code for form above:

<form name="form1" method="post" enctype="text/plain" action="mailto:larissabank@hotmail.com">

name:
<input type="text" name="name" value="lara" size="20">
<p />
<textarea name="thoughts" rows="10"></textarea>
<p />
<input type="submit" name="submit" value="Submit">
<input type="reset" name="reset" value="Reset">

</form>