To Contact us or buying this domain use this form below.
if(isset($_POST['send']))
{
$name=$_POST['name'];
$email=$_POST['email'];
$phone=$_POST['phone'];
$comment=$_POST['comment'];
$headers = "MIME-Version: 1.0";
$headers .= "Content-type:text/html;charset=iso-8859-1";
$headers .= 'From: <'.$email.'>' ;
$headers .= 'Reply-To: ' .$email;
$mailsubject = "Message from ".$_SERVER['SERVER_NAME'];
$mailbody = "Name : ".$name."
\r\n Email : ".$email."
\r\n Phone : ".$phone."
\r\n Comment : ".$comment;
$mailaddress = "himanshu@vendingtrucks.com";
mail($mailaddress, $mailsubject, $mailbody, $headers);
echo "";
}
?>