The trick is to use " mailto:" (is the email address for sending form data) as the "action" (where you would have otherwise placed the address to a CGI script) in your form. For example, let's take a look at the HTML tags used in the above example:
<form
action=" mailto:"
method="POST"
enctype="multipart/form-data"
name="EmailTestForm">
Your Name:<br>
<input type="text" size="20" name="VisitorName"><br><br>
Your Comment:<br>
<textarea name="VisitorComment" rows="4" cols="20">
</textarea><br><br>
<input type="submit" value="Email This Form">
</form>
So, go ahead... create your next online form using your favorite HTML editor and simply type "mailto:" (without quotes) followed by your email address for the "action" tag to get yourself a functional online form.
|