Hi,
I've got a form with various fields which I like to send to the form sender in a nice html format.
let's say one of the form variables is "city". how do I place it in the the below $Body code???
$Body .= ' <table width="743" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>city: </td>
</tr>
</table>';
$to = $Email . ", " ;
$subject = "test";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset='windows-1255'\r\n";
$headers .= "From: test <tset@test.com>\r\n";
mail($to, $subject, $Body, $headers);