Hi Manuel, thanks again for my last post.
I am using this code to get the text/html body.
$pop3->OpenMessage(1, -1);
$pop3->GetMessage(51024, $msg, $end_of_message);
var_dump($msg);
Below is the output.
...
IP Address: dd99.14.13.246 Date Modified: July 24, 2008, 8:45 am ------=_Part_9769_6352316.1217205107613 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Name: John Doe
Old email:
[email protected]
------=_Part_9769_6352316.1217205107613-- "
...
Is there a way to just get this content below?
Name: John Doe
Old email:
[email protected]
Thanks.