<?php
$name="Mithlesh kumar";
$email="mkumar96.mithlesh@gmail.com";
$admin_email = "manojraaj09@gmail.com ";
$site_name = "www.rkoyal.com";

$message = "Hi! Enquiry from rkoyal.com<br>";
$message .= "<p>Thanks for showing interest with us.</p><br>
<br><strong>Thanks & Regards,<br>Support Team<br>www.rkoyal.com</strong><br>";


// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'To: Mithlesh <'.$email.'>' . "\r\n";
$headers .= 'From: rkoyal  <'.$admin_email.'>' . "\r\n";

//Send mail to Visitor
if(mail($email, "A new enquiry from rkoyal.com", $message, $headers)){
echo "<script>alert('Thank you! You'll be receiving your personalized expert review within 3 Business Days!')</script>";
}
?>