// Script Name: PHP Contact Mailer
// Set page variables.
$title = "Request for Addition to Mailing List";
$back = "";
$bg = 'FFFFFF';
$text = '000000';
$link = '000000';
$vlink = '000000';
$trans = 'spinoutin';
$btntag = 'text=000000 insetselection';
$txtbxtag = 'bgcolor=FFFFFF text=000000 cursor=ff autoactivate nohighlight';
// Remove < and > from the email message.
$msg = str_replace("<","",$msg);
$msg = str_replace(">","",$msg);
// Set email variables.
$your_email = 'admin@vbmatch.com';
$your_name = 'Ernest';
$your_link = 'http://www.vbmatch.com';
$contact_msg = "
Please add me to the VBmatch mailing list
Name: $name $email
I learned about VBmatch via: $learn
Message: $msg
";
// Begin the sendmail routine.
if ($send) {
if (!$name || !$email || substr_count($email, '@') < 1 ||
substr_count($email, '.') < 1) {
print <<
Error!
Error!
Please go back and correct the errors listed below:
EOF;
if (!$name) {
print "- Your name is missing.
"; }
if (!$email || substr_count($email, '@') < 1 || substr_count($email, '.') < 1) {
print " - Your email is missing or invalid.
"; }
if (!$msg) {
print " - The email message is missing.";
}
print <<
|
BACK
EOF;
}
else {
// Email that gets sent to you.
mail($your_email, "Request for Addition to Mailing List", $contact_msg, "From: $name < $email >");
// Print the thank you page.
print <<
Your Message Has Been Sent
Thank You $name
Your request has been sent.
HOME
EOF;
}
}
else {
// Print the contact form page.
print <<
$title
$title
EOF;
}
?>
|
|
|
|
|