The script posted above will not send any email, it is just a form with no destination. You need to have a Server-side script to take the form POST information and sent the email.
First you need to specify the Server script as the forms 'action' parameter, for example:
Code:
<form name="contact" method="post" action="sendform.php">
The you need to create the form processing script 'sendform.
php' and save it to your Server.
A simple example would be:
Code:
<?php
$message = "";
foreach($_POST as $a => $b) {
$message .= $a." : ".$b."\n";
}
mail("you@domain.com","Form Submission",$message);
?>
Note that the above is the most basic code example possible, you really should add some additional validation checks etc... but it should give some food for thought.