Lo pobé en gmail y no aparecen las imagenes y en hotmail tmp aparecen y además como correo no deseado....
Este es mi formulario con el que envio:
Código PHP:
<?php
if(isset($_POST['enviar'])) {
$para = $_POST['para'];
$asunto = $_POST['asunto'];
$mensaje = $_POST['mensaje'];
$cabeceras = 'MIME-Version: 1.0' . "\r\n";
$cabeceras .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$cabeceras .= 'From: '.$asunto.' <mimail@gmail.com>' . "\r\n";
$cabeceras .= 'Cc: mimail@gmail.com' . "\r\n";
$cabeceras .= 'Bcc: mimail@gmail.com' . "\r\n";
mail($para, $asunto, $mensaje, $cabeceras);
echo '<h1 align="center">Mensaje enviado con EXITO!</h1>';
die();
}else{
echo '<form action="index.php" method="post"><table width="600" border="0" align="center" cellpadding="10" cellspacing="0" class="file">
<tr>
<td width="162" bgcolor="#CCCCCC"><strong>Para:</strong></td>
<td width="438" bgcolor="#CCCCCC"><input name="para" type="text" class="file" size="30"></td>
</tr>
<tr>
<td bgcolor="#E6E6E6"><strong>Asunto:</strong></td>
<td bgcolor="#E6E6E6"><input name="asunto" type="text" class="file" size="30"></td>
</tr>
<tr>
<td valign="top" bgcolor="#CCCCCC"><strong>Mensaje:</strong><br>
<span class="Estilo2">Se puede usar HTML</span></td>
<td bgcolor="#CCCCCC"><textarea name="mensaje" cols="50" rows="15" class="file"></textarea></td>
</tr>
<tr>
<td valign="top" bgcolor="#E6E6E6"> </td>
<td bgcolor="#E6E6E6"><input name="enviar" type="submit" class="boton" value="ENVIAR"></td>
</tr>
</table></form>';
}
?>