| Instructions
Enter
the following HTML code to your form. You only need
to change the text in orange. The "sendto" value should
be your email address. The "subject" value should be
the subject of your form. The "resulturl" value should
be a confirmation web page that you make.
< form
action="http://www.mho.net/mailto.exe" method="post">
< input type=hidden name="sendto" value="user_name@mho.net">
< input type=hidden name="server" value="smtp.mho.net">
< input type=hidden name="subject" value="Put
in your own subject">
< input type=hidden name="resulturl" value="/thankyou.html">
The
following fields are optional. You can also make these
fields accessible in the form by removing the `type=hidden'
attribute.
< input
type=hidden name="cc" value="name@domain.com">
A comma seperated list of other receipients of the form
contents.
< input
type=hidden name="resulttxt" value="Thank
you!">
Some text that is displayed in the Thank you message.
Use in place of resulturl.
< input
type=hidden name="uname"value="somename">
Name of the user (which will be iserted into the from
clause to aid filing).
< input
type=hidden name="email" value="name@domain.com">
The email address of the person filling the form. The
contents of this field will also be placed into the
From: clause of the mail message. When you receive this
message, you will be able to type "Reply" and reply
to the person who filled the form. (What could be easier?)
The
HTML code below goes at the end of your form. It makes
a submission and reset button on your web page.
< input
type=submit value="Send Email"> < input type=reset
value="Reset">< /form>
|