1) bold the $Field (when it's being send in email)
2) make it print more than one field on the same line (could I stick that into a character per line check?)
Code: Select all
<?php
foreach ($_POST as $Field=>$Value)
{
if(!empty($Value)){$MsgBody .= "$Field: $Value\n";}
}
?>