if($_REQUEST['submit']){
$cname=$_REQUEST["name"];
$org=$_REQUEST["org"];
$address=$_REQUEST["address"];
$country=$_REQUEST["country"];
$ph=$_REQUEST["phone"];
$email=$_REQUEST["email"];
$enquiry=$_REQUEST["comment"];
$msg="Name of Person :\t ".$cname."
";
$msg.="Organisation :\t ".$org."
";
$msg.="Address :\t ".$address."
";
$msg.="Country :\t ".$country."
";
$msg.="Phone :\t ".$ph."
";
$msg.="E-mail :\t ".$email."
";
$msg.="Requirements :\t ".$enquiry."
";
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";// More headers
$headers .= "From: $email" . "\r\n";
//echo "$msg\n";
//mail field starting
$to ="truevaluetechnologies@gmail.com";
$to1="praveenaone@gmail.com";
$subject ="Delhi Packers Movers Business Enquiry Through delhimoversandpackers.com";
mail($to,$subject,$msg,$headers);
mail($to1,$subject,$msg,$headers);
$redirect_url="http://indiapackerandmovers.com/thankyou.html";
header("Location: $redirect_url");
}
?>



