如何在 ASP.NET 应用程序中接收来自 Gmail 的邮件?
如何在 ASP.NET 应用程序中接收来自 Gmail 的邮件?有 Gmail API 吗?
How do I receive mail from Gmail within my ASP.NET application? Is there a Gmail API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Google 允许用户在其 GMail 帐户上启用 IMAP 支持。然后您可以使用 IMAP 库来访问收件箱(即读取(标记)消息、删除消息等)。
当然,您必须使用库。您可以实现自己的 IMAP 客户端,但库会让您更轻松。
以下是 .NET 的几个可能的 IMAP 库:
interimap.codeplex.com/
www.rebex.net/mail.net/tutorial-imap.aspx
作为@Douglas 建议,当然,IMAP 不一定是您唯一的选择。如果您偏爱 POP3,您也可以使用 POP3 库。
Google allows one to enable IMAP support on their GMail account. Then you can use an IMAP library to access the inbox (i.e. read (mark) messages, delete messages etc.)
Of course, you don't have to use a library. You could implement your own IMAP client but a library will make it a lot easier for you.
Here are a couple of possible IMAP libraries for .NET:
interimap.codeplex.com/
www.rebex.net/mail.net/tutorial-imap.aspx
As @Douglas suggested, of course, IMAP need not be your only option. If you have a preference for POP3 you could just as well use a POP3 library.