Secure Document Alliance
Corporate Office
1850 South 3230 West
Salt Lake City, Utah 84105
Phone: 801-866-9760
Fax: 800-878-3453 |
if (isset($_POST['form_submit']) && !empty($_POST['contact_name']) && !empty($_POST['contact_phone']) && !empty($_POST['contact_email']) && !empty($_POST['company_name']) && !empty($_POST['comments'])) {
$to = "lindsay@crushllc.com"; //CHANGE ME!!!!! Change this to what ever email they want the email to be sent to
$headers = "From: ".$_POST['contact_name']." <".$_POST['contact_email'].">";
$subject = "Customer Comment";
$message = "";
$message .= "Name: ".$_POST['contact_name']."\n";
$message .= "Phone: ".$_POST['contact_phone']."\n";
$message .= "Email: ".$_POST['contact_email']."\n";
$message .= "Company: ".$_POST['company_name']."\n\n";
$message .= "Comments: ".$_POST['comments']."\n";
mail($to, $subject, $message, $headers);
echo "Your Comments Have Been Sent. ";
} else {
?>
} ?> |