Código PHP:
$header = get_object_vars(imap_header($link,$_GET['num']));
echo "De: $header[fromaddress]<br>";
echo "Para: $header[toaddress]<br>";
echo "Fecha: $header[Date]<br>";
echo "Tema: $header[Subject]<br><br>";
echo ereg_replace("rn","<br>", htmlentities(imap_body($link,$_GET['num']))); //Obtener cuerpo del mensaje
De: Nicolas Gullino
Para: [email protected]
Fecha: Sun, 14 Mar 2010 13:47:01 -0300
Tema: Envio desde Gmail
--0016364c7c657cc8e50481c5839b Content-Type: text/plain; charset=ISO-8859-1 Envio de Gmail para SPEL --0016364c7c657cc8e50481c5839b Content-Type: text/html; charset=ISO-8859-1 Envio de Gmail para SPEL<br> --0016364c7c657cc8e50481c5839b--
El problema es q al imprimir el cuerpo me salen un monton de cosas...solo quisiera lo q esta en negrita.......Alguna idea?