Publishers of technology books, eBooks, and videos for creative people

Home > Articles

Like this article? We recommend

Your Contact Form

Here is a simple contact form that I created to show how code should be written to work properly with FormMail.pl:

<html>
<title>ReptileLabs - Contact Information</TITLE>
<LINK REL="SHORTCUT ICON" HREF="favicon.ico">
<BODY BGCOLOR="#000000" text="#9E98BC" LINK="#FF5CFF" ALINK=[ccc]
"#FF0000" VLINK="#FFA240">
<body>
<meta name="description" content=""
<meta name="keywords" content=""
<font face="Arial" size="+1">
<center><font face="MS Sans Serif,Arial" size="-1">All site[ccc]
content &copy;1995-2004 by <a href="http://reptilelabs.com">[ccc]
ReptileLabs</a> unless otherwise noted.<br>Text content /[ccc]
website design by <a href="http://reptilelabs.com">ReptileLabs[ccc]
</a> unless otherwise noted.</font></font> 
<hr>

<H2 ALIGN="center"><font face="Times New Roman,Serif">[ccc]
ReptileLabs Contact Page</font></H2></center>
<p>
<form action = "http://www.ecis.com/cgi-bin/cgiwrap/~alizard/[ccc]
FormMail1.pl" method = "POST">

This next line must be inserted in your contact form HTML to make FormMail.pl work. Everything else is optional. This tells the browser where to look for the script. You can get this information from your provider.

<input type=hidden name="recipient" value="alizard@ecis.com">

The line containing the e-mail address tells the script where to e-mail the form. However, that's the minimum. I chose to implement more functionality in mine. One adds processing functions by adding the other "hidden name" fields from the FormMail documentation. The easiest way to do this is to go to the Montana Internet Corp. FormMail.pl documentation. This enables you to click directly to the fields that you might want to try out.

You add passive data-collection functions by adding regular form fields with named values. An example is in Contact Reason below.

You might object that putting your plain-text e-mail address on your web page leaves you just as open as a conventional mailto does to spammers. Well, it does. The fix is the same: Translate the e-mail address to which you want mail forms to be sent to character entity references within the contact form HTML. Although you can use your e-mail address in the conventional form, on the actual page as uploaded, I translated my mailing address to character entity references, as shown in the "NATATA Anti-Spam Encoder" article.

???Dustin: Please link to the appropriate article here. James says it hasn't been posted yet. Krista

This is how the line looks when the e-mail address is translated to character entity reference format:

<input type=hidden name="recipient" value="&#97&#108&#105&#122[ccc]
&#97&#114&#100&#64&#101&#99&#105&#115&#46&#99&#111&#109">

I added a fixed subject in the line below so that e-mail from that page could be filtered directly into a mail folder on my e-mail client, using the value as a text string for the filter to operate on.

<input type=hidden name="env_report" value=",REMOTE[ccc]
_ADDR,HTTP_USER_AGENT">

This instructs the script to collect and send you information containing the defined "environment field," which contains information collected by the web server. In this case, the information is the IP address that the user is coming from and the kind of browser in use.

The following line prints the information that would ordinarily be seen only within the subject field header of the e-mail message within the body of the message text. This might be useful in database and other processing of the form content.

<input type=hidden name="required" value="email,realname,messagetext">

Here, required means that if a user doesn't fill in all the required values, that user gets an error page, not an acknowledgment of mail sent.

<input type=hidden name="subject" value="Contact Form-Reptilelabs">

Choosing a subject here means that you can set your e-mail client to automatically filter it into a special mail folder for site-related e-mail. I used a separate Contact Reason field to allow users to choose a subject and to make further filtering possible, if desired.

<input type=hidden name="redirect" value="http://www.ecis.com/~alizard/confirmed.html">

This allows you to send users to a specific page (for example, a "Your mail has been sent!" page) after successfully completing and submitting the form. This is not required; the FormMail script provides one, but doing this means that you can make the confirmation page look like the rest of your site.

<p>
<font face="MS Sans Serif,Arial" size="-1">
<b>Fields marked * are required</b>
<b>*Name 
<br><input type = "text" maxlength = 200 size = 35 name =[ccc]
 "realname" value = "">
<br>
<b>*E-mail </b>
<br><input type = "text" maxlength = 200 size = 35 name =[ccc]
 "email" value = "">
<p>
<b>Contact Reason </b><p><select name = "contact_reason">
<option selected>ReptileLabs
<OPTION>I've read one of A.Lizard's published articles, and...
<OPTION>I've read one of A.Lizard's public posts and...
<OPTION>There is a security or other problem with the site itself
<OPTION>Anything else
</select>

I used a drop-down menu to constrain user choices to the ones listed; you can use a text field to allow free choice instead.

This is not from the list of optional entries in the FormMail documentation. You can add your own, and the FormMail script will process the information that your web form collects for you. This is what makes this script such a flexible and powerful tool.

<p>
*Message <br><textarea name = "messagetext" cols = 40 rows = 5>[ccc]
</textarea>

This is where the user enters the message. This isn't from the optional entries list, either.

<img src = "" border = 0 width = 150 height = 40>
<p>
<input type = "reset" value = "CLEAR"> <input type = "submit"[ccc]
 value = "SEND"> 
</form>
</table>
<hr>
<b><font face="MS Sans Serif,Arial" size="+0">
<center><a href="index.html">Home</a>
</html>

Note that you can put anything you please in the HTML file, as long as you use unique words in each form element value field; the value names are listed along with the entries filled in by the user. The print_blank_fields command prints all fields, including empty fields not filled in. Many possibilities exist, and you can find them at the FormMail.pl documentation page listed above.

Figure 4 shows what the contact form web page looks like.

Figure 4Figure 4 Contact form browser display.

Figure 5 shows what my "confirmed" page looks like. (Code is not provided because anything will work.) You should put in some sort of indication that the mail was, in fact, sent, or some users will try repeatedly until they get bored——and you will get mail repeatedly from the same user.

Figure 5Figure 5 Confirmed page browser display.

Here is the result:

==== end quote
Date: Sun, 13 Jun 2004 22:23:42 -0700
To: alizard@ecis.com
From: alizard@ecis.com (A. Lizard)
Subject: Contact Form-Reptilelabs

Below is the result of your feedback form. It was submitted by
A. Lizard (alizard@ecis.com) on Sunday, June 13, 2004 at 22:23:42
------------------------------------------------------------------------

email: alizard@ecis.com

subject: Contact Form-Reptilelabs

contact_reason: ReptileLabs

messagetext: test

------------------------------------------------------------------------

REMOTE_ADDR: 66.81.70.58
HTTP_USER_AGENT: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Opera 7.21 [en]
==== end quote

Note the REMOTE_ADDR. If anyone tries to spam or otherwise abuse your mail, the ISP or network origin of the abuse can usually be determined via a whois lookup of the IP address given. This is why I enabled that environment variable.

Peachpit Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Peachpit and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Peachpit products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email ask@peachpit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.peachpit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020