我从哪里开始学习如何在 C# 中使用 pop3 和 imap 协议?
我想阅读 Gmail 中的邮件,但在阅读时不删除它们。 但是我希望能够选择删除特定电子邮件。
我从哪里开始?(我不想使用其他库 - 我想从头开始)
I want to read mails from Gmail without deleting them while reading.
However I want to have the option to delete a specific email.
Where do I begin?( I don't want to use others libraries - I want to start it from scratch)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据有关 IMAP 的内容和关于 POP,.Net 中没有对 IMAP 或 POP 的内置支持。不过,有大量免费(开源)实用程序你可以使用。
Per this about IMAP and this about POP, there is no built-in support for IMAP or POP in .Net. However, there are a plethora of free (and open-source) utilities you can use.
这个问题和相关问题有一个库和链接列表。
在 C# 中访问 Imap
This question and related questions have a list of libraries and links.
Accessing Imap in C#
如果您想从基础知识开始,请先阅读
IMAP
RFC 1939 和 RFC 3501 的 rfcs RFC 3501。 POP3 为 2449
If you want to start at the basics start by reading the rfcs
RFC 3501 for IMAP
RFC 1939 & 2449 for POP3