Easy Email Forms

To easily send email from your web page to a list of predefined email address, simply paste the following into your web page, changing items in red to suit your needs.

I.e. Change your email address, the subject and add as many text boxes, options, drop down etc as you require.   Make sure you name each control (text box, drop down etc.) with a sensible meaningful name, as these will appear  in each email you receive.


Start Copy -->

<FORM METHOD=POST ACTION="http://www.chantrywood.com/scripts/sendmail/sendmail.asp">
<INPUT TYPE="hidden" NAME="sysFrom" value="youremail">
<INPUT TYPE="hidden" NAME="sysFromName" value="Webserver">
<INPUT TYPE="hidden" NAME="sysSubject" value="Webserver Form Submitted">
<INPUT TYPE="hidden" NAME="sysTo" value="youremail">
<INPUT TYPE="hidden" NAME="sysCC" value="yetanotheremail">


<!-- Optional - Redirect to another page after email is sent -->
<INPUT TYPE="hidden" NAME="sysRedirect" value="http://www.yahoo.com">

Name : 
<INPUT TYPE="TEXT" NAME="Full_Name"> 

Email Address : 
<INPUT TYPE="TEXT" NAME="From">

Telephone : 
<INPUT TYPE="TEXT" NAME="Telephone_Number">

Do you require Contact?

Yes<INPUT TYPE="RADIO" NAME="contact" VALUE="yes" CHECKED >
No <INPUT TYPE="RADIO" NAME="contact" VALUE="No">

<INPUT TYPE="SUBMIT" VALUE="Send">

</FORM>

<-- End Copy