Hi,
You can use the mail() function from php to send mail. (I assume you have found that).
If you post the form to say processform.php (or to itself, where you test wether the form has been submitted)
You can form a mailbody like (Think this should work anyway):
foreach($_POST as $key => $value)
{
$mailbody .= "$key: $body";
}
Then mail using the mail() function.
This is of course the most simple (and universal!) solution: It will mail all the POST-ed variables with their name to the recipient. You can add formatting & filtering to it. Or you can decide you know which formelements are present, and fill a mailbody variable with this, calling each element bytheir name from the past array: $Elemenent1 = $_POST[Element1Name];
Hope this helps,
J.