使用 IMAP 计算 Gmail 中的电子邮件数量
谁能告诉我如何使用 imap 或其他东西从 gmail 获取收件箱中未读邮件的数量,并将其显示在 C# WinForms 的标签中?
我尝试使用原子提要,但永远无法得到它
这是我想要的样子,如果有帮助的话:
Can anyone tell me how I can get the number of unread items in my inbox from gmail using imap or something else and display it in a label in C# WinForms?
I tried using atom feeds, but never could get it
Here is what I want to look like, if it helps:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
已解决
这是我与 ImapX 组件一起使用的代码:
我只需将 int 转换为字符串并在按钮中显示该字符串(看不见)。感谢QuantumSoup为我指明了正确的方向
SOLVED
Here is the code i used with the ImapX component:
i just had to covert the int to a string and show the string (unseen) in the button. Thanks to quantumSoup for pointing me in the right direction
您可能想要查找设置了
UNSEEN
标志的所有邮件。You probably want to find all messages with the
UNSEEN
flag set.