| |||||||
|
One of our most important goals is fast service and tech support |
|||||||
|
Contact Us! Please fill out our contact form with your comments or questions.
Willmaster web site software.
Willmaster.com is a PR 5 web site, safe to link to.
If you need more functionality:
a. File Uploads.
b. Multi-page forms.
c. Customized thank-you pages with calculations option.
d. Form information stored in MySQL table.
Consider Master Form PHP. It can be found at:
http://www.willmaster.com/software/formPHP/
*/
/* Tech support is at http://www.willmaster.com/support/forum/viewforum.php?f=5 */
/* See downloaded file WillmasterFeedbackManual.html for information. */
/* See below for customization steps. */
////////////////////////////////////////
//
// C U S T O M I Z A T I O N
//
//
// Customization is 9 steps.
//
// Customization step 1 --
// Specify the email address where the form information is to be sent.
$ToEmail = "melinda@webworldplus.com";
// Customization step 2 --
// If the form information also is to be sent to a Cc: email
// address, specify that address here. Otherwise, leave it
// blank.
$CcEmail = "";
// Customization step 3 --
// If the form information also is to be sent to a
// Bcc: email address, specify that address here.
// Otherwise, leave it blank.
$BccEmail = "";
// Customization step 4 --
// Specify the email address the email with the form
// information is coming from. This will be put into
// the email's From: header line.
$FromEmail = "melinda@webworldplus.com";
// Customization step 5 --
// Specify the subject line for the email with the
// form information. If the subject line contains a
// quotation mark, escape the quotation mark with a
// backward slash character: \"
$SubjectLine = "Web World Plus Contact Form";
// Customization step 6 --
// If you want the form information to be put into the
// email in a certain order, specify that order here in
// a comma-separated list. (If any form fields are not
// listed here, they will be included after the fields in
// this list.) If you don't care what order, leave this
// blank.
$FieldInformationOrder = "name, email, message";
// Customization step 7 --
// Specify the number of seconds that must elapse before
// the form is submitted to help detect automatic
// submission. (Suggest 2 seconds.) If this is left
// blank, 0 seconds is assumed.
$SecondsBeforeWindowOpens = 2;
// Customization step 8 --
// Specify the number of hours after the form is loaded
// within which the form must be submitted. Otherwise,
// it is assumed to be an automatic submission. (Suggest
// 5 hours.) If this is left blank, 48 hours is assumed.
// A decimal number is acceptable here. 1.5 for example.
$HoursAfterWhichWindowCloses = 5;
// Customization step 9 --
// To turn off the JavaScript portion of automatic form
// submission protection, assign a value of "off" to
// this variable.
$JavaScriptFormProtection = "on";
//
// End of Customization
////////////////////////////////////////
$ErrorMessage = '';
$Time = time();
$AntiSpamCode = "?__a__=$Time";
$FormSubmitted = false;
if( count($_POST) )
{
$validated = 0;
if( isset($_GET['__a__']) )
{
$loadtime = intval($_GET['__a__']);
$open = intval($SecondsBeforeWindowOpens);
if( $open < 1 ) { $open = 0; }
$close = floatval($HoursAfterWhichWindowCloses);
if( $close < .01 ) { $close = 48; }
$close = intval( 60 * 60 * $close );
if( ($Time - $open >= $loadtime) and ($loadtime + $close >= $Time) ) { $validated++; }
}
if( $JavaScriptFormProtection == "off" ) { $validated++; }
else
{
if( isset($_GET['__z__']) and $_GET['__z__'] <= $Time ) { $validated++; }
}
if( $validated == 2 )
{
$FormSubmitted = true;
ProcessForm();
}
else
{
$ErrorMessage = '
';
$ErrorMessage .= "Please re-submit the form after $SecondsBeforeWindowOpens seconds have elapsed (starting now) and before $HoursAfterWhichWindowCloses hours have elapsed.";
$ErrorMessage .= ' $value ) { $email .= "$key:\n$value\n\n"; }
mail( $ToEmail, $SubjectLine, $email, EmailHeaders() );
}
function EmailHeaders()
{
global $CcEmail, $BccEmail, $FromEmail;
$headers = array();
$headers[] = 'MIME-Version: 1.0';
$headers[] = 'Content-Type: text/plain; charset="utf-8"';
$headers[] = 'Content-Transfer-Encoding: 8bit';
if( strpos($FromEmail,'@') ) { $headers[] = "From: $FromEmail"; }
if( strpos($CcEmail,'@') ) { $headers[] = "Cc: $CcEmail"; }
if( strpos($BccEmail,'@') ) { $headers[] = "Bcc: $BccEmail"; }
return implode("\r\n",$headers);
}
?>
— Thank-you —
Thank you for taking the time to contact us. We will respond as soon as possible. |
|
Home | Company | Portfolio/Testimonials | Website Case Studies | Services | POP3 Mail Setup | Contact |
||
| Copyright 2004 ~ Web World Plus, LLC ~ Privacy Policy | ||