How can I send an html email in which:
in the html as mail, is a image, It's source is given as http:/.../.
If I add the headers:
$headere = "MIME-Version: 1.0\r\n";
$headere .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headere .= "From:
xxx@yahoo.com \r\n";
and send email as: mail($to, $subject, $text, $headere);
the email is seen as html but the image which should have to appear is not there.
What else do I have to add as headers so the image would appear
Pls help urgent!!!:eek: