I’m downloading a message from gmail using pop3.
When the message is in ansi every thing is OK but when there is another language I get gibberish
Any ideas?
Thanks Asaf
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Most likely the message content is encoded using BASE64 or Quoted-Printable.
You need to check Content-Transfer-Encoding header.
You can use Convert.FromBase64String(string s) method to decode BASE64.
…or you can use a commercial component as MIME is tricky.