Problem of retrieving email using Pop3...please help!

  • Thread starter Thread starter ywchan
  • Start date Start date
Y

ywchan

i use pop3 with .NET to retrieve email
it works fine for english only...if the message contains chinese,
the chinese characters sometimes display as base64 (e.g.
=?big5?B?jkfajfdfjkk==?= ) / quoted-printable (e.g.=A2=C8=D8)
I wonder how to convert them back to chinese characters...Thanks
 
use Convert.From64String for converting base64
quoted printable needs to be implemented by hands :(

Or try using this library:
http://www.lesnikowski.com/mail

It's simple and effective.
Allows sending, receiving and parsing email messages.
Encodes/decodes any kind of attachment.
Includes POP3 and STMP clients.
It's written entirely in managed code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top