Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/04/2002, 13:50
mofo!
 
Fecha de Ingreso: julio-2001
Mensajes: 185
Antigüedad: 22 años, 8 meses
Puntos: 0
Re: Contenido Html En Un Mail !!!!!!!!!!!!!

que tal aOne

usando la funcion mail() yo realizo lo siguiente:

$mensaje = "<html><body>Aqui el mensaje</body></html>"

$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: Mi nombre <[email protected]>\r\n";

mail("[email protected]","Asunto: hola",$mensaje,$headers);