如何在 ASP.NET 应用程序中接收来自 Gmail 的邮件?

发布于 2025-01-04 16:29:58 字数 53 浏览 1 评论 0原文

如何在 ASP.NET 应用程序中接收来自 Gmail 的邮件?有 Gmail API 吗?

How do I receive mail from Gmail within my ASP.NET application? Is there a Gmail API?

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

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

发布评论

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

评论(1

难以启齿的温柔 2025-01-11 16:29:58

Google 允许用户在其 GMail 帐户上启用 IMAP 支持。然后您可以使用 IMAP 库来访问收件箱(即读取(标记)消息、删除消息等)。

当然,您必须使用库。您可以实现自己的 IMAP 客户端,但库会让您更轻松。

以下是 .NET 的几个可能的 IMAP 库:

作为@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:

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.

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