Sending email is easy with php. For a full script with email validation, required fields checking and email delivery go here.
<?
$to = "youremailaddress.com;
$subject = "Hi!";
$body = "Hi,\\n\\nHow are you?";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>