in submit.php you should have
<?php
$to = "your
[email protected]";
$subject = "mail";
$message = $_post ["email"];
$from = $_post ["email"];
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
just wrote this in the spur of the moment so it may need to be refined.