Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/12/2004, 15:36
Avatar de tralara
tralara
 
Fecha de Ingreso: diciembre-2003
Mensajes: 230
Antigüedad: 20 años, 4 meses
Puntos: 0
Pues yo uso algo asi:
Código PHP:
<?
$mail 
"[email protected]";
$asunto "Correo HTML";
$headers "MIME-Version: 1.0\r\n";
$headers .= "From: $nombre<$email>\r\n";
$headers .= "Reply-To: $nombre<$email>\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$cuerpo "<html>
<head>
<title>Document sans titre</title>
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>
</head>
<body>
<img src='http://www.dominio.com/images/imagen.jpg' width="
239" height="209"> 
</body>
</html>"
;
$accion mail($mail$asunto$cuerpo,$headers);
?>
Saludos.

Última edición por tralara; 26/12/2004 a las 15:38