Code Snippets Php

Part 1 is the code for the form itself.





Name:




Email address you are sending to:



Your Email:





Subject:



Message:









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.");
?>