Get great deals from the
Internet via E-mail CLICK
HERE
Member Newsletter
BUILD
YOUR SITE
Beginning: Receiving Email from your Site
Using Freeservers' Form Emailer
Whenever you click on a "Contact Us" link on a professional, well-programmed Web
site, often a Web page with a form loads into your browser. You enter specific information and click "Submit," and your information
is magically transported to the company you want to contact. Receiving information that a visitor submits through an online form
requires a CGI (a program that runs on the server and tells the server what to do with the submitted info). Often this requires
hiring an expensive programmer to create the CGI for you. However, the programmers at Freeservers have already created a CGI that
collects the information from your form and sends it to you. We call this CGI the "Form E-mailer" and have made it available to all
Freeservers members. With just a few simple HTML codes, you can have information e-mailed to you directly from your Web site.
There are a few HTML tags you will need to be familiar with in order to use
the Form E-mailer. First, you need to know what tags you use to create a form. Here is a list of each tag you can use in a form and
what that tag does:
As long as you place the <FORM METHOD="post" ACTION="/cgi-bin/cgiemail">
tag at the beginning of the form and a </FORM> form at the
end, you can use the other elements listed above as many times and however you would like. Keep in mind that the NAME for each
element must be unique (except for radio buttons).
Here is an example of a form's code, with the working form below:
<FORM METHOD="post" ACTION="/cgi-bin/cgiemail">
Full Name: <INPUT TYPE="text" NAME="full_name">
E-mail Address: <INPUT TYPE="text" NAME="email">
What is your favorite color?
<INPUT TYPE="radio" NAME="color" VALUE="red"> Red
<INPUT TYPE="radio" NAME="color" VALUE="blue"> Blue
<INPUT TYPE="radio" NAME="color" VALUE="green"> Green
Please leave me any comments about my Web site:
<TEXTAREA NAME="comments" COLS="50" ROWS="10"></TEXTAREA>
Anything submitted through this form on your Web site would be e-mailed automatically to whatever
e-mail address you have listed in your Account Settings for your Freeservers account. If you are using
Webmail, it will be sent to webmaster@YOURDOMAIN.com.
If you would like more information on the Form E-mailer, including various options you can include
in your forms, visit our help section by clicking here and locating
and clicking on the "Form E-mailer" link in the left-hand menu.