As long as you have a mail server running (that your PHP configuration knows about), it should work dandy. A short example might be:
PHP Code:
<?php
// You would post to this page
$myEmail = "jon@doe.com"; // the address you want it sent to
$name = $_POST['name']; // where "name" is the name of the field
$subject= $_POST['subject'];
$message= $_POST['message'];
$emailContents = "$name
$message";
if (mail($myEmail, $subject, $emailContents))
echo "The form was submitted.";
else
echo "There was a problem...call the nearest doctor!!";
?>
...and you'd use this by posting to the page with this code...if you included this on the page itself (with the form), you'd want to make sure you're receiving a post:
PHP Code:
if ($_SERVER['REQUEST_METHOD'] == "POST") {
// email the info
} else {
// show the form
}
Also, if you want to get advanced with it,
http://phpmailer.sourceforge.net/
is a full-featured awesome PHP mailer class.
...I really need to check for PHP questions more often... just over two weeks old! Sorry if I said more/less then what you wanted to hear, just let me know.