ob_start();
include "broad_prev.php";
$message = ob_get_contents();
ob_end_clean();
i have used the code above to get the contents of my php page to display in a newsletter thst is emailed out to the mailing list.
it works to apoint but no images are sent through with the email just the text. could this be a problem with how the images are stored on the page it is putting into the email.
the code for the page which is getting emailed looks like this
<body>
<?php
include"db.php";
$con = mysql_pconnect("$xxxxx","$xxxxx","$xxxxx")
or die ("QUERY ERROR: ".mysql_error());
$db = mysql_select_db($xxxxxx, $xxxxxx)
or die("QUERY ERROR: ".mysql_error());
?>
<table width="900" border="0" align="center" cellpadding="0" cellspacing="5">
<tr>
<td height="95" colspan="2" scope="col"><img src="layout/BroadsheetSample/broadhead.jpg" width="900" height="150" /></td>
</tr>
<tr>
<td height="25" colspan="2" scope="col"><span class="title"><?php echo ($broad_topictitle1); ?></span></td>
</tr>
<tr>
<th width="23%" height="200" scope="col"><div align="left">
<p>
<?php
$query = "SELECT broad1 FROM images_broad";
$result=mysql_query($query);
while($row=mysql_fetch_array($result, MYSQL_ASSOC)){
echo '<img src="'.$row['broad1'].'"/>';
}
?>
<p> </p>
</div></th>
<td width="77%" scope="col"><table width="99%" border="0" cellpadding="10" cellspacing="0">
<tr>
<td align="left" valign="top"><span class="mainTxt"><?php echo ($broad_messagebody1); ?></span></td>
<!-- End Image 1 -->
</tr>
</table>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p></td>
</tr>
<tr>
<td height="28" colspan="2" scope="col"><span class="title"><?php echo ($broad_topictitle2); ?></span></td>
</tr>
<tr>
<th height="95" scope="col"><div align="left">
<?php
$query = "SELECT broad2 FROM images_broad";
$result=mysql_query($query);
while($row=mysql_fetch_array($result, MYSQL_ASSOC)){
echo '<img src="'.$row['broad2'].'"/>';
}
?>
<p><br />
</p>
</div></th>
<td scope="col"><table width="99%" border="0" cellpadding="10" cellspacing="0">
<tr>
<td align="left" valign="top"><span class="mainTxt"><?php echo ($broad_messagebody2); ?></span></td>
<!-- End Image 1 -->
</tr>
</table>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p></td>
</tr>
<tr>
<td colspan="2" scope="col"><img src="layout/BroadsheetSample/broadfoot.jpg" width="900" height="150" /></td>
</tr>
<tr>
<td height="13" colspan="2" scope="col"><div align="justify"><span class="style1">Linacre Voice is a monthly bulletin from LinacreOne Community Partnership 140-142 Linacre Road Litherland L21 8JU Tel: (0151) 922 4898 Open Monday - Thursday 10:00am - 4:00pm <font size="\"1\""></font></span> </div></td>
</tr>
</table>
</body>
</html>
if anyone could help it would be much appreciated.