Contact Our Support Team
if (isset($_POST['submit'])){
$first = $_POST['element_1_1'];
$last = $_POST['element_1_2'];
$email = $_POST['element_2'];
$comments = $_POST['element_3'];
$anti = $_POST['anti'];
if($anti == 6 || $anti == "six" || 1==1){
$to = "support@gradvocates.com";
$subject = "gradvocates.com Contact Form";
$body = "Name: $first $last \n\n Email: $email \n\n Comments:\n $comments \n";
$headers = "From: $email \n";
mail($to,$subject,$body,$headers);
echo "
Thank you. Your inquiry has been submitted. The Gradvocates Editing Team will respond as soon as possible.
";
}
}
?>