检查我的电子邮件?
在 .NET 中发送电子邮件很简单 - 创建 MailMessage 并使用 SmtpClient 发送。但是我如何检查我的收件箱,即获取已到达我的电子邮件列表?
Sending emails in .NET is simple - create MailMessage and send using SmtpClient. But how do I check my Inbox i.e. get list of emails that have arrived to me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.NET 基类库中没有任何实现 POP 或 IMAP 协议的内容,因此您需要使用第三方库(除非您想自己实现它们)。这个问题可能会有所帮助: https://stackoverflow.com/questions/26606/free-pop3-net-图书馆
There is nothing that implements POP or IMAP protocols in the .NET base class library, so you will need to use a third-party library (unless you want to implement them yourself). This SO question may help: https://stackoverflow.com/questions/26606/free-pop3-net-library