You need a from processor, a server side script to send you the info, if your hosting package supports PHP then put this all the way on top of your code:
PHP Code:
<?php
if (!empty($_POST)) {
$email = 'YOUR EMAIL ADDRESS'; /* EDIT THIS */
$subject = 'From contact form';
$body = '';
$fields = array('Name', 'Email', 'Comments');
$valid = true;
foreach ($fields as $field) {
$value = trim(strip_tags($_POST[$field]));
if ($value == '') {
echo $field .' can\'t be empty.<br />';
$valid = false;
}
$body .= $field .': ' .$value .'<br />';
}
if ($valid) {
mail($email, $subject, $body);
echo 'Thanks, we will reply as soon as possible.';
}
}
?>
I hope this helps