使用IMAP计算Gmail中的电子邮件数量

时间:2010-08-22 01:08:35

标签: c# winforms gmail imap inbox

任何人都可以告诉我如何使用imap或其他东西从gmail获取收件箱中的未读项目数量,并将其显示在C#WinForms的标签中?

我尝试使用原子提要,但从来没有得到它

这是我想要的样子,如果它有帮助:

Inbox(1)

2 个答案:

答案 0 :(得分:9)

<强>解决

以下是我与ImapX组件一起使用的代码:

 ImapX.ImapClient client = new ImapX.ImapClient("imap.gmail.com", 993, true);
        bool result = false;

        result = client.Connection();
        if (result)
            MessageBox.Show("Connection Established");

        result = client.LogIn(textBox1.Text, textBox2.Text);
        if (result)
        {
            MessageBox.Show("Logged in");
            ImapX.FolderCollection folders = client.Folders;
            ImapX.MessageCollection messages = client.Folders["INBOX"].Search("UNSEEN", true); //true - means all message parts will be received from server

            int unread = messages.Count;
            string unseen = unread.ToString();
            button1.Text = unseen;
        }

我只需要将int转换为字符串并在按钮中显示字符串(看不见)。感谢quantumSoup指出我正确的方向

答案 1 :(得分:6)

您可能希望查找设置了UNSEEN标记的所有邮件。

Imap imap = new Imap();
/* connect, login, etc. */
imap.Connect(...);
/* fill login and select folder code */

List<long> unseenList = imap.SearchFlag(Flag.Unseen);

// now you can get the count from unseeList
int unread = unseenList.Count;