in my sendmail i have the following
<?php
$email=$_POST['email']; //who we are sending to
$subject=$_POST['subject']; //the subject of the mail
$message=$_POST['message']; //the body of the mail
mail($email,$subject,$message); //php's mail function, with its 3 parameters
echo "Mail...