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.
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>