Down here is my php code - very simple - but still i couldnt receive any email
<?php
    $from="email";
    $email="machiavelli1527@hotmail.com";
    $subject=$_POST['Subject'];
    $message=$_POST['Surname'];
    $message=$_POST['Gender'];
    $message=$_POST['telephone'];
    $message=$_POST['EnterEmail'];
    $message=$_POST['Message'];
    $message=$_POST['Receive'];
    $message=$_POST['Receive1'];
    mail ($email, $subject, $message, "From:".$from);
    echo("Thank you $name for your interest in LTD.  We will be in contact with you very soon. Feel free to continue to browse the company website.");
    die;
?>
 
    