<?php
if(isset($_POST['submit'])) {
    $name = $_POST['name'];
    $contact = $_POST['num'];
    $email = $_POST['email'];
    $message = $_POST['message'];
    $ToEmail = 'info@kesems.com';
    $EmailSubject = 'School Enquiry';
    $mailheader = "From: ".$_POST["email"]."\r\n";
    $mailheader .= "Reply-To: ".$_POST["email"]."\r\n";
    $mailheader .= "Content-type: text/html; charset=iso-8859-1\r\n";
    $MESSAGE_BODY = "Name: ".$_POST["name"]."\r\n";
    $MESSAGE_BODY = "Phone: ".$_POST["num"]."\r\n";
    $MESSAGE_BODY .= "Email: ".$_POST["email"]."\r\n";
    $MESSAGE_BODY .= "Message: ".nl2br($_POST["message"])."\r\n";
    mail($ToEmail, $EmailSubject, $MESSAGE_BODY, $mailheader) or die ("Failure");
    header('Location:contact-us.php');
}
?>
contact-us.php
<form role="form" action="contact-us.php" id="main-contact-form" class="contact-form" name="contact-form" method="post">
    <div class="row ml0">
        <div class="form-group">
            <input type="text" class="form-control" name="name" required="required" placeholder="Name">
        </div>
        <div class="form-group">
            <input type="text" class="form-control" name="num" required="required" placeholder="Contact number">
        </div>
        <div class="form-group">
            <input type="text" class="form-control" name="email" required="required" placeholder="Email address">
        </div>
        <div class="form-group">
            <textarea name="message" id="message" required="required" name="message" class="form-control" rows="3" placeholder="Any Queries/suggestions" style="resize:none"></textarea>
        </div>
        <div class="form-group">
            <input type="submit" name="submit" value="Send Message" class="btn btn-primary btn-lg"/>
        </div>
    </div>
</form>
Simple script that sends email headers...still not working.
is code is correct?
any particular solution for this? any particular solution for this? thank you in advance.
 
     
    