System: Windows NT WINDOWS18 10.0 build 17763 (Windows Server 2016) AMD64 | User: IWPD_3544(appclien)

Path: D:\Inetpub\vhosts\appclients.in\fruits-vegitables.nmvm.org

[Back to List]
<?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>";
}
?>