Hi Andy,
I think this is the php script you are requesting
<script language="php"> $email = "email"; $mailto = robhar@mweb.co.za; $mailsubj = "Feed back submission"; $mailhead = "From:email"; reset ($HTTP_POST_VARS); $mailbody = "Values submitted from web site form:\n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; } if (!eregi("\n",$HTTP_POST_VARS[email])) { mail($mailto, $mailsubj, $mailbody, $mailhead); } </script>