====== Using PHP to Send an Email from a HTML Form ====== Form submission
First Name:
Last Name:
Email:
Message:

Essentially this code is a simple HTML Form with zero elegance but a great example. It posts to itself, wherein the PHP code looks for that post (Remember PHP provides a form post in $_POST) and then sends the message via email. You can hack this around all you wish, its public domain code.