Code: Select all
<?php
$id = $row_rsucites['Item_Num'];
$to = $row_rsucites['Email1'] . " , ";
$to .= $row_rsucites['Email2'] . " , ";
$to .= $row_rsucites['Email3'];
$subject = "Sample Subject";
$headerPic = '<IMG src="http://sample.com/Sections/uctionItems/photos/photo.jpg">';
$body = "<html><body>" .
"<h2><center>With Compliments: From Sample.com!<br><br>
Sample Text!</center></h2>" .
"<p><center>$headerPic</center></p>" .
Code: Select all
$headerPic = '<IMG src="http://sample.com/Sections/uctionItems/photos/$row_rsucites['Image_URL'];">';
Any help would be greatly appreciated!