Web Sites and Ezine Design and Hosting

Provide information to create an HTML snippet for your web page. Leave unwanted fields blank in the form below.
Copy and paste the resulting HTML into your web page. Add any extra form elements you need to complete your information capture.
ToName: Name of the primary recipient of the mail, normally the site owner. This will be encoded if you have selected the privacy setting in the wizard above.
ToAddress: Email address of the primary recipient. This will be encoded if you have selected the privacy setting in the wizard above.
Subject: A subject line to identify this message
FromName: Name of the sender, the website visitor
FromAddress: Email address of the sender. This address will be copied into a reply-to header in the Email message.
ErrorPage: File name for an error response page to be loaded when processing of the form input fails. This will normally be the same page as used for form input. To conditionally display the error message for the user, insert the following code at some prominent spot near the top of the form page:
[Lasso_comment]
Display a helpful error message when form processing fails. [/Lasso_comment]
[if (var_defined ('errorMessageHTML') && $errorMessageHTML != '']
<ul>[Output ($errorMessageHTML, -encodeNone)]</ul>
[/if]
Internet Explorer will empty the content of form fields when a user returns to a form page by requesting Previous Page. Consequently, scripting must be manually applied to populate form elements following an error in form processing. To populate form elements, a value for each form element is retrieved from an array (hash or map) of post params. For example:
<input type="text" name="fromName" value="$postMap->find('fromName')">
RequiredValues: You may optionally name a list of parameters that you want Mailer to require with the hidden tag RequiredValues. For example, to require that the user enter something in the name, address and phone, use the following hidden tag.
<input type="hidden" name="RequiredValues" value="name, address, phone">
Carbon Copy: To carbon copy a secondary recipient with the message to the primary recipient, place the parameter CC in the list of parameters.
Formatted Report to the Site Owner: To combine the forms parameters with an HTML template and produce a formatted Email message, place the parameter "MailForm" in the list of hidden parameters.
<input type="hidden" name="MailForm" value="http://yourdomain.com/MailForm.html">
In the example, "MailForm.html" is the name of a text file that is stored on your web site. See below for more information on template content.
Auto Responder to the Site Visitor: To auto respond with an email message to the web site visitor, add "Responder" and "RespSubject" parameters to your form.
The text in the responder message may be HTML or plain text. Name the file containing your response to be with a suffix that is consistent with its content (.html or .txt).
The respName and respAddress parameters identify who the responder email will appear to come from. Normally, this will be the web site owner's name and address.
<input type="hidden" name="responder" value="http://yourdomain.com/ResponseFile.html">
<input type="hidden" name="respSubject" value="Thanks for Your Request">
Security Code: To help ensure that your site visitor is a real person and not spam software, you must include a security code requirement. Visitors type the letters as they appear on an image. See the output of the Forms to Mail Generation script above for exact content of this scripting. Be careful to include the entire script code with your form.
Submit Button: The submit button may be given any value you choose, as the submit parameter is ignored.
<input type="submit" name="submit" value="Send Request">
Create HTML Email messages for the Site Owner and/or the Site Visitor.
Create a standard HTML file containing the static information that you want to include. Populate the form with dynamic or fill-in fields. Each of the dynamic fields will be filled-in with data taken from the form. For example, to include a salutation, use the following:
Dear [$FirstName],
Be sure to self-test your implementation and contact support@webvalence.com if you have problems or questions.
(503) 335-3442 :: sales@webvalence.com :: Copyright 1997 - 2008 :: All Rights Reserved
WEBVALENCE is a registered trademark of WebValence Internet Partners