The form you prepare cannot use an html "receiver": it must be a server-side script that receives the for and do something.
The "link" is the "action" in your form tag.
Here is an example:
HTML FORM to EMAIL (Php)
Your index.html file:
(replace
by their correct form - stupid editor!)
Your emailfwd.php file:
$name = $_POST['name'];
$pwd = $_POST['pwd'];
$email = $_POST['email'];
... ADD HERE THE COLLECTION OF THE FORM DATA
$to = "youremail@whatever.com";
$headers = "From: ".$email. "\r\n";
$subject = "Submitted application";
$msg = $name . " has sumitted a form!\r\n";
$msg .= "Pwd: " . $pwd . "\r\n";
$msg .= "email address: " . $email . "\r\n";
... ADD HERE THE REST OF THE DATA
mail($to, $subject, $msg, $headers);
echo ("Mail processed.");
?>