alert("Enter Correct Captcha Code."); window.location= "contact_us.php"; ';
}
else{
$name=$_POST['name'];
$lname=$_POST['lname'];
$phone=$_POST['phone'];
$email=$_POST['email'];
$message1=$_POST['message1'];
//$to=$email;
//$to="rajkavintech@gmail.com";
//,periyasamyanbu@gmail.com
$to="contact.us@bparc.org.sg";
$subject = "Contact Form";
/*
*/
$message .='
';
$message ='
' . $subject . '
RC BLK 108 #01-129, Singapore-090108. Phone: 6271 6395
Contact Details
Name
'.$name.'
Email
'.$email.'
Mobile
'.$phone.'
Subject
'.$lname.'
Message
'.$message1.'
';
$message .= '
BPARC © 2019 | All Rights Reserved.
';
$message .="
";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// More headers
$headers .= 'From: '.$email.'' . "\r\n";
$headers .= 'Bcc: kavintechsolutions@gmail.com' . "\r\n";
mail($to,$subject,$message,$headers);
echo ("");
// header("Location: http://kavintechsolutions.com.sg/bparc/index.php");
}
}
?>