We believe in doing everything we can to provide exceptionally well-qualified consultants for your most demanding technical jobs.
We strive to provide the overall best customer service experience. We are excited to hear from you.
Email: Info@DigitalWingman.com
Phone: (866)970-4445
$subject = $_POST['full_name'];
$body = $_POST['comments']."
IP1: ".$_SERVER['REMOTE_ADDR']."
IP2: ".$_SERVER['HTTP_X_FORWARDED_FOR']."
";
$email = $_POST['email'];
function send_the_mail($subject, $body, $headers){
$to = "brian@digitalwingman.com";
$mail_sent = mail( $to, $subject, $body, $headers );
return $mail_sent ? "
*Your message has been sent and we'll be in touch with you shortly. Thank you!
" : "Mail failed
";
}
if($_POST['comments']){
$body = $body . "from: " . $subject . " email: " . $email;
$headers = "From:" . $email;
echo send_the_mail($subject, $body, $headers);
}
?>