i wrote this code
<?
$recipient="shams_ur_rehman@hotmail.com";
$from="From: shams1486@yahoo.com";
$subject="This is a test HTML email";
// Build the mail header
$xheaders .= "X-Mailer: PHP\n"; // mailer
$xheaders .= "X-Priority: 6\n"; // Urgent Message!
$xheaders .= "Content-Type: text/html; charset=iso-
8859-1\n"; // Mime type
$xheaders .= $from;
// Read contents of html file (intended email message
body) into a string
$filename = "index.htm";
$fd = fopen ($filename, "r");
$mailbody = fread ($fd, filesize ($filename));
fclose ($fd);
mail($recipient, $subject, $mailbody, $xheaders);
echo "Thank u for your interst to send mail";
?>
the index.htm file has some images that is not shown
in the mails that is send to recipient
how can i send those images as wel text
plz help me and treat me as i m not a professional so edit this code for that
thanks.