Estoy tratando de enviar una imagen por email en php, pero veo que no llega, el mail me llega en blanco, porque??? hago esto:
Código PHP:
$subject = "New Friend Recomendation"; // asunto del mail
$hdr="MIME-Version: 1.0\n";
$hdr.="Content-type: text/html; charset=iso-8859-1\n";
$hdr.="Content-Transfer-Encoding: 8bit\n";
$hdr.="X-Priority: 1\n";
$hdr.="X-MSMail-Priority: High\n";
$hdr.="From: \"InfoNews\" <[email protected]>\n";
$mensaje2 = "<html>\n<body>\n";
$mensaje2 = 'Dear '.$friendname.',
Tu amigo '.$yourname.' te recomienda que visites.....etc';
$mensaje2 = "<img src='http://fotobienllamada.jpg' width='265' height='56'>";
$mensaje2 = "</body>\n</html>\n";
mail("[email protected]", $subject, $mensaje, $hdr);// enviamos el mail!
mail($recipient2, "Thank You!", $mensaje2, $hdr);