i'm trying to include an html file in my html formatted email but i'm not really getting anywhere! I've tried this;
$ok = @mail($to, $subject, include('inctemp.html'), $headers);
and
$message = include('inctemp.html');
$ok = @mail($to, $subject, $message, $headers);
but they just create errors. I s there anyway i can do this to avoid \" all my html "
in the email script? its sucha time waster!
$message ="<html>
<head>
<link rel=\"STYLESHEET\" type=\"text/css\" href=\"http://pod-200.dolphin-server.co.uk/btwsite/btw_PC_1.css\">
</head>
<body>
<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"main\">
<tr bgcolor=\"#FFFFFF\">
<td width=\"517\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"feedbackbar\">
<tr>
<td> </td>
</tr>
</table></td>
</tr>
<tr bgcolor=\"#F2F1EB\">
<td bgcolor=\"#FFFFFF\"> </td>
</tr>
<tr>
<td align=\"left\" >
<table width=\"517\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td colspan=\"3\" ><table width=\"254\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">
<tr bgcolor=\"#FFFFFF\">
<td width=\"111\"><img src=\"http://pod-200.dolphin-server.co.uk/btwsite/images/transgif.gif\" width=\"100\" height=\"2\"></td>
<td width=\"143\"> </td>
</tr>
<tr>
<td><a href=\"http://www.btwshiells.co.uk\"><img src=\"http://pod-200.dolphin-server.co.uk/btwsite/images/BTWS_emaillogo.jpg\"></a></td>
<td><img src=\"http://pod-200.dolphin-server.co.uk/btwsite/images/offices/".$pocode."phone.gif\" border=\"0\"></td>
</tr>
<tr>
<td bgcolor=\"#FFFFFF\"><img src=\"http://pod-200.dolphin-server.co.uk/btwsite/images/transgif.gif\" width=\"100\" height=\"2\"></td>
<td bgcolor=\"#FFFFFF\"> </td>
</tr>
</table></td>
</tr>
<tr>
<td valign=\"top\" bgcolor=\"#d22224\"><a href=\"http://pod-200.dolphin-server.co.uk/btwsite/html/BTWShiells_map.php?pcode=$pcode\" target=\"_blank\"><img src=\"http://pod-200.dolphin-server.co.uk/btwsite/php/propimages/fs_$image\" name=\"mainpic\" height=\"298\" hspace=\"0\" id=\"mainpic\"></a></td>
<td valign=\"top\" bgcolor=\"#d22224\"><p class=\"fulldetails_text\">$address<br>
$info<br><br>
$pbrief</p></td>
<td bgcolor=\"#d22224\"> </td>
</tr>
<tr>
<td bgcolor=\"#FFFFFF\"><img src=\"http://pod-200.dolphin-server.co.uk/btwsite/images/transgif.gif\" width=\"448\" height=\"2\"></td>
<td> </td>
</tr>
</table>
</td>
</tr>
<tr bgcolor=\"#FFFFFF\">
<td></td>
</tr>
<tr bgcolor=\"#FFFFFF\">
<td class=\"disclaimer\">© BTWShiells 2005</td>
</tr>
</table>
Please click <a href=\"http://pod-200.dolphin-server.co.uk/btwsite/html/BTWShiells_map.php?pcode=$pcode\" target=\"_blank\">here</a>
to view the full details for this property<br>
<font color=\"#FFFFFF\">http://pod-200.dolphin-server.co.uk/btwsite/html/BTWShiells_map.php?pcode=$pcode&.<font><br>
";
many thanks.
D.