What do you mean??? or should I say how do you add it in something like this???
<?php
// multiple recipients
$to = 'email@email.com' . ', '; // note the comma
// subject
$subject = 'HTML Test';
// message
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p><img src="http://www.site.com/images/banner3.JPG"><p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Print Echo stuff from sql in here</th>
</tr>
</table>
</body>
</html>
';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To: Mary <one@example.com>, Test <one@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
// Mail it
mail($to, $subject, $message, $headers);
echo "Sent HTML"
?>