如何找到邮件消息的编码?

发布于 2024-09-08 23:47:26 字数 108 浏览 4 评论 0原文

我正在使用 pop3 从 Gmail 下载邮件。

当消息使用 ansi 格式时,一切正常,但是当使用另一种语言时,我会得到乱码

有什么想法吗?

谢谢阿萨夫

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我们的影子 2024-09-15 23:47:26

消息内容很可能是使用 BASE64 或 Quoted-Printable 进行编码的。

您需要检查 Content-Transfer-Encoding 标头。
您可以使用 Convert.FromBase64String(string s) 方法来解码 BASE64。

...或者您可以使用商业组件,因为 MIME 很棘手。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文