
dellaemme - 2016-01-03 14:02:44
Hi,
the script is very powerful!
I have only a problem to show the entire body of email message in a php page...
If i set the savebody parameter the class saves the decoded message.
here's the code where i retrieve the body content:
if($mime->decode_bodies) {
if($mime->Analyze($decoded[0], $results)) {
$body=$results['Data'];
} else {
$body='MIME message analyse error: '.$mime->error."\n";
}
}
echo $body;
It's possible in this class to show the entire body of the email with the inline attachments like a email client shows the content of an email?
Thanks!