The message shows the html tags....I can't figure out why...
$to = "County Kids <info@clarkcountykids.com>";
$subject = "Edit Line Listing";
$message = '
<html>
<head>
<title></title>
</head>
<body>
<table align=\"center\" width=\"100%\">
<tr>
<td align=\"center\">Edit Line Listing<br /></td>
</tr>
<tr>
<td> Listing ID: $listingid<br />
User ID: $user<br />
Password: $password1<br />
</td>
</tr>
</table>
</body>
</html>
';
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: ClarkCountyKids <info@clarkcountykids.com>";
mail($to, $subject, $message, $headers);
Any help is appreciated.