在 C# 中从 gmail 获取通知的最佳方法
收到新电子邮件时,在 C# 中从 gmail 获取通知的最佳方式。
Best way to get notification in from gmail in C#, when new email is received.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
收到新电子邮件时,在 C# 中从 gmail 获取通知的最佳方式。
Best way to get notification in from gmail in C#, when new email is received.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
查看 Gmail 收件箱 Feed。与使用 POP3 相比,它要轻一些。
Have a look at the Gmail inbox feed. It's a bit lighter than using POP3 for this.
看看
Gmail API
Take a look at
Gmail API
您需要考虑使用 POP3 库。如果您愿意使用现有的,您可以查看 这里。
You would need to look into using POP3 Libraries. If you are willing to use existing one, you can have a look at here.
您可以使用IMAP协议和IDLE命令。
Mail.dll 支持此开箱即用:
http://www.limilabs.com/ blog/imap-idle
[请注意,这是我创建的商业产品]
You can use IMAP protocol and IDLE command.
Mail.dll supports this out-ot-the-box:
http://www.limilabs.com/blog/imap-idle
[Please note that this is a commercial product I created]