Have you got something like this:
form.html
<html>
<head>
<title>Form</title>
</head>
<body>
<form action="send.php3" method="post">
<input type="text" name="1"><br>
<input type="text" name="2"><br>
<input type="text" name="3"><br>
<input type="submit" value="SEND">
</form>
</body>
</html>
send.php3
<?php
$to = "webmaster@something.com";
$subject = "Form Details";
$message = "Someone used the form. They entered:\n".$_POST['1']."\n".$_POST['2']."\n".$_POST['3'];
$from = "From:www.mysite.com<Mysite>";
echo "Message Sent";
mail ($to,$subject,$message,$from);
?>