寻找 C# 中具有 SSL 支持的 pop3 reader 类
我环顾四周,有几个项目,但它们似乎都已经过时了, 我应该使用那些吗?或者是否有一个新的开箱即用的 pop3 类,我在 msdn 中找不到。 无论如何,我不是在做一个需要发送的客户端,所以不需要 SMTP,更像是一个整理电子邮件并阅读它们的机器人。有什么想法吗? 干杯!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 Mail.dll POP3 客户端。它支持SSL,易于使用,并且支持解析复杂的MIME结构:
请注意,这是我开发的商业产品
您可以在这里下载Mail.dll:
http://www.lesnikowski.com/mail/
Take a look at Mail.dll POP3 client. It supports SSL, is easy to use, and supports parsing complex MIME structures:
Please note that this is a commercial product that I developed
You can download Mail.dll here:
http://www.lesnikowski.com/mail/
我在另一个 OpenPOP /did-openpop-net-with-gmail-attachments-break-recently">thread,这似乎是我目前为这项任务选择的库。
I discovered OpenPOP on another thread, which seems to be my library of choice at the moment for this very task.
几年前我构建了一个,发布在代码项目上,并且已注明日期(http:// /www.codeproject.com/KB/IP/NetPopMimeClient.aspx)。如果您有兴趣,我可以向您发送从未发布到 CP 的最新源代码的副本。
我最终使用 Dart Mail 作为我在 CP 上开发的解决方案的替代品。我最终使用 Dart Mail 的主要原因是它具有 Mime 解析功能,这实际上最终成为我开发的解决方案的主要问题。 IIRC Dart Mail 相当合理,如果您需要强大的东西,可能值得一看。
I built one a few years back that's posted on code project and it is dated (http://www.codeproject.com/KB/IP/NetPopMimeClient.aspx). If you are interested I can send you a copy of the latest source code which was never posted to CP.
I ended up using Dart Mail as a replacement for the solution I developed posted on CP. The main reason I ended up using Dart Mail is for the Mime Parsing facilities that it has which really ended up being the main problem with the solution I developed. IIRC Dart Mail is pretty reasonable and may be worth a look if you need something that is robust.