I'll assume you know how to send the email so use this to build your message body.
$msgbody = "";
foreach ($POST as $key => $value) {
$msgbody .= "$key: $value\n";
}
Be aware that your submit button and any hidden fields will show up as well. You can use if statements to exclude them if you like.