test444

E-mail “.$_REQUEST[‘your_email’].”
Phone: “.$_REQUEST[‘your_phone’];
$headers = “From: imsmb@imsmb.com\r\n” .
‘X-Mailer: PHP/’ . phpversion() . “\r\n” .
“MIME-Version: 1.0\r\n” .
“Content-Type: text/html; charset=utf-8\r\n” .
“Content-Transfer-Encoding: 8bit\r\n\r\n”;

// Send
mail($to, $subject, $message, $headers);
header(‘location: /thankyou-home/’);
}

?>