Hi
I am having problem to decoding email body.
I have following code, but some "quoted-printable"@message do not be decoded correctly.
Does anybody know what I did wrong?
(this code is to get multiple attach files...)
$tmpText = imap_fetchbody($stream, $msg_number, $part_number);
if($structure->parts[$x]->encoding == 3)
@$text = imap_base64($tmpText);
else if($structure->parts[$x]->encoding == 4)
@$text = imap_qprint($tmpText);
else
@$text = $tmpText;