Whether you´d like to learn more about the company, would like to work with us, or just have some questions about what we do, we´d love to hear from you. Please use the form below and we´ll get back to you as soon as we can.
//where to send the email too $to = "kdiehl@theguidepublishers.com"; if ( isset($_POST['send']) ) { if ( trim($_POST['email']) != "" || trim ($_POST['name']) !== "" || trim ($_POST['subject']) != "" || trim($_POST['message']) != "") { $from = $_POST['email']; mail("$to", $_POST['subject'], $_POST['message'], "From: $from\n"); } else { $error = "All Fields Required"; } } ?> //print out the error if it exists echo $error; ?>