<?php
$MailToAddress = "myemail"; // your email address
$redirectURL = "mysite"; // the URL of the thank you page.
optional settings
$MailSubject = "Contact Form"; // the subject of the message you will receive
$MailToCC = ""; // CC (carbon copy) also send the email to this address
(leave empty if you don't use it)
in the $MailToCC field you can have more then one e-mail address like "d@web4future.com,
b@web4future.com, c@web4future.com"
If you are asking for an email address in your form, you can name that input field "email".
If you do this, the message will apear to come from that email address and you can simply click
the reply button to answer it.
You can use this scirpt to submit your forms or to receive orders by email.
You need to send the form as POST!
If you have a multiple selection box or multiple checkboxes, you MUST name the multiple list box
or checkbox as "name[]" instead of just "name"
you must also add "multiple" at the end of the tag like this: <select name="myselect[]"
multiple>
and the same way with checkboxes
This script was made by George A. & Calin S. from Web4Future.com
There are no copyrights in the e-mails sent and we do not ask for anything in return.
DO NOT EDIT BELOW THIS LINE ============================================================
ver. 1.2
$Message = "";
if (!is_array($HTTP_POST_VARS))
return;
reset($HTTP_POST_VARS);
while(list($key, $val) = each($HTTP_POST_VARS)) {
$GLOBALS[$key] = $val;
if (is_array($val)) {
$Message .= "<br><b>$key:</b> ";
foreach ($val as $vala) {
$vala =stripslashes($vala);
$Message .= "$vala, ";
}
$Message .= "<br>";
}
else {
$val = stripslashes($val);
if (($key == "Submit") || ($key == "submit")) { }
else { if ($val == "") { $Message .= "$key: - <br>"; }
else { $Message .= "<b>$key:</b> $val<br>"; }
}
}
} // end while
$Message = "\n<font face=verdana size=2>".$Message;
mail( $MailToAddress, $MailSubject, $Message, "Content-Type: text/html; charset=ISO-8859-1
\r\nFrom: ".$email."\r\nBCc: ".$MailToCC);
header("Location: ".$redirectURL);
?>