Part 1 is the code for the form itself.
Part 2 is the actual php script in this case email.php
echo "Hello, $name.";
echo "
";
echo "You have successfully sent your mail";
echo "
";
mail("$email", "$subject"," $message. My E-mail is $youremail. Greetings from $name.");
?>