Hi,
I'm using the IMAP functions to read my mail online. I get plain text email ok, unless it contains charactors like '£' then I get '=A3' how do I decode these charactors back to '£'.
I've already used
$arrTemp[0]=base64_decode($arrTemp[0]);
and
$subject=Quoted_printable_decode($subject);
$subject=ereg_replace("=\?.{0,}\?[Qq]\?","",$subject);
$subject=ereg_replace("\?=","",$subject);
to decode some of it. But a few charactos remain.
Cheers
Ben