<?php

$to = "info@reliamaint.in";
$subject = "PHP Mail Test from Reliamaint Website";
$message = "This is a test email sent using PHP mail function from reliamaint.in website.";

$headers = "From: Website Test <info@reliamaint.in>\r\n";
$headers .= "Reply-To: info@reliamaint.in\r\n";
$headers .= "Content-Type: text/plain; charset=UTF-8\r\n";
$headers .= "MIME-Version: 1.0\r\n";

if (mail($to, $subject, $message, $headers)) {
    echo "PHP mail returned TRUE.";
} else {
    echo "PHP mail returned FALSE.";
}

?>