Advertise with us
| Company Name |
" . $companyname . " |
| Contact Person |
" . $ContactPerson . " |
| E-mail ID |
" . $email . " |
| City |
" . $City . " |
| Telephone No |
" . $TelephoneNo . " |
| Mobile No |
" . $MobileNo . " |
| Website |
" . $Website . " |
| Enquiry |
" . $Enquiry . " |
";
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To:'. $to . "\r\n";
$headers .= 'From: dandiyazone.com
' . "\r\n";
mail($to, $subject, $message, $headers);
// end mail function
unset($_SESSION['security_code']);
header("Location:http://www.dandiyazone.com/cms/thank-you.html");
} else {
// Insert your code for showing an error message here
echo "Please enter the correct security code
";
}
}
?>