Looking at your example message, its encoding type is quoted printable.
It might be possible to get Zend_Mail to do this for you, I'm not sure,
but if not you'll need to decode it yourself. Once you get the raw
content from the message use PHP's quoted_printable_decode function,
that should work I think (although I've never actually used it).
However, the encoding type could be different for different
messages/parts, so you should check the Content-Transfer-Encoding header
of each part before decoding.
Jan Pieper wrote:
Jack Sleight wrote:
Hmm, but howto replace "=3D" and "=C3" with human readable characters?
-- Jan
--
Jack