<?php
// Get the keys and values from form (without submit)
reset ($_POST);
while (list ($key, $val) = each ($_POST)) {
if (!strstr('submit',$key))
$formstuff.="$key:<br>$val<br><br>";
}
$text=str_replace("\n","<br>\n",$_POST['palaute']);
$msg="<html>
<head>
<title>Title</title>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">
</head>
<body>
<h3>Details about blablabla...</h3>
$formstuff
</body>
</html>";
$to = "markku@wmhost.com";
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "From:youremail@blabla.com\n";
mail($to,'User details from blabla.com',$msg,$headers);
?>
Quite self-explanary...