从Gmail C#中读取电子邮件 - IMAP

时间:2016-02-18 06:27:34

标签: c# visual-studio gmail imap

我正在尝试阅读特定Gmail帐户的电子邮件。我在这里找到了一些东西(Stackoverflow),但我无法管理阅读电子邮件。

这就是我正在使用的:

 public static void logingmail()
    {
        // Connect to the IMAP server. The 'true' parameter specifies to use SSL
        // which is important (for Gmail at least)
        ImapClient ic = new ImapClient("imap.gmail.com", "Any@gmail.com", "4521945219",AuthMethods.Login, 993, true);
        // Select a mailbox. Case-insensitive
        ic.SelectMailbox("Inbox");
       string countmessages = ic.GetMessageCount().ToString();
        // Get the first *11* messages. 0 is the first message;
        // and it also includes the 10th message, which is really the eleventh ;)
        // MailMessage represents, well, a message in your mailbox
        MailMessage[] mm = ic.GetMessages(0, 10);
        foreach (MailMessage m in mm)
        {

            var subject = m.Subject.ToString();
        }
        // Probably wiser to use a using statement
        ic.Dispose();

    }

当我第一次创建新的ImapCliient类时,我遇到的问题可能正在发生。由于某种原因,它打开浏览路径来选择文件(?)。 我会很高兴得到一些帮助。 感谢

1 个答案:

答案 0 :(得分:1)

如果您找到了某些内容,S22.Imap,您应该使用该主题的第二篇文章的解决方案。 (Here你可以找到一个编译版本。)

下载后,您可以阅读文档。它简单易读。

实际上,我使用这个库并且效果很好!