I was looking at your HTML code and I saw that you were missing a php code that sends the data to your email.
PHP Code:
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "info@pine*****pub.co.uk";
$mailsubj = "Form Submission";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
$mailbody .= "$key : $val\n";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
?>
To add this to your HTML Code, Click View > Page HTML, Click Inside Body Tag and Paste the Code in the box, then click ok and give it a try.
I hope it works for you.