Email con imagnes solo envia texto ?
Hola amigos mi idea era hacer un newsletter con una propaganda pero solo me envía el texto y no la imagen. Este es el código del correo. La imagen obviamente esta bien ubicada
<?php
$codigohtml ="
<html>
<head>
</head>
<body>
<p>hola esta es mi foto</p>
<p><img alt=\"\" src=\"pc.jpg\" width=\"132\" height=\"115\"></p>
</body>
</html>
";
$email = $_POST['email'];
$asunto = $_POST['asunto'];
$cabeceras = "Content-type: text/html\r\n";
mail($email,$asunto,$codigohtml,$cabeceras);
?>
<?php
$codigohtml ="
<html>
<head>
</head>
<body>
<p>hola esta es mi foto</p>
<p><img alt=\"\" src=\"pc.jpg\" width=\"132\" height=\"115\"></p>
</body>
</html>
";
$email = $_POST['email'];
$asunto = $_POST['asunto'];
$cabeceras = "Content-type: text/html\r\n";
mail($email,$asunto,$codigohtml,$cabeceras);
?>
1 respuesta
Respuesta de Cyrus ...
1