| |
//FORM VARS
$IP = $_SERVER["REMOTE_ADDR"]; //IP
$selfref = $_SERVER['SCRIPT_NAME']; //URL
$name = $_POST[name];
$company = $_POST[company];
$position = $_POST[position];
$email = $_POST[email];
$phone = $_POST[phone];
$bestTime = $_POST[bestTime];
$contactMethod = $_POST[contactMethod];
$team = $_POST[team];
$techBrains = $_POST[techBrains];
$goal = $_POST[goal];
$requirement = $_POST[requirement];
$budget = $_POST[budget];
$startDate = $_POST[startDate];
$completeDate = $_POST[completeDate];
$haveWebsite = $_POST[haveWebsite];
$websitePurpose = $_POST[websitePurpose];
$url = $_POST[url];
$server = $_POST[server];
$literature = $_POST[literature];
?>
Tell Us Who You Are
The information collected in this form will not be shared with ANYONE and we will not contact you other then to provide you with information related to your request.
if ($_POST[attempt2process] != "Y") {
?>
} else {
$message = "Name: $name\n\n";
$message .= "Company: $company\n\n";
$message .= "Position: $position\n\n";
$message .= "Email: $email\n\n";
$message .= "Phone: $phone\n\n";
$message .= "Best Time to Call: $bestTime\n\n";
$message .= "Contact Method: $contactMethod\n\n";
$message .= "No. People on Team: $team\n\n";
$message .= "No. Programmers: $techBrains\n\n";
$message .= "Business Goals: $goal\n\n";
$message .= "Business Requirements: $requirement\n\n";
$message .= "Budget: $budget\n\n";
$message .= "Start Date: $startDate\n\n";
$message .= "Completion Date: $completeDate\n\n";
$message .= "Company has a Website: $haveWebsite\n\n";
$message .= "Website Purpose: $websitePurpose\n\n";
$message .= "Website URL: $url\n\n";
$message .= "Server Type: $server\n\n";
$message .= "Print Literature: $literature\n\n";
//ASSEMBLE AND SEND THE MAIL
if ($name != "") {
$name = " ".$name;
}
if (mail("tracey@smartspeed.ca", "Quote Request", $message, "From: $email")) {
echo "Thank you $name, your request has been sent. ";
} else {
echo "There was an error in your submission, please click here to try again. ";
}
}
?>
We will contact you within the next 48 hours to collect additional information so that our proposal and quotation to you is exactly what you need!
Thank you for your interest. We look forward to helping you win!
Tracey, Trevor and Gustavo
SmartSpeed
|