无法通过C#中的Gmail电子邮件获取主题

时间:2017-05-17 13:48:11

标签: c# email variables pop3 openpop

我正在申请查看上次发送的带有“Teste”字样的电子邮件,并将其主题变为变量。

这是一个控制台应用程序,因为我不需要与它进行交互。

我的代码如下:

using (var client = new OpenPop.Pop3.Pop3Client())
        {
            client.Connect(host, port, useSSl);
            client.Authenticate(username, password);

            // Set conditions
            MailQueryBuilder builder = new MailQueryBuilder();

            // Subject contains "Teste"
            builder.Subject.Contains("Teste");

            // Here is the email of the sender
            builder.From.Contains("senderemail@gmail.com");

            // Build the query
            MailQuery query = builder.GetQuery();                               
        }

我是POP3编程的新手,所以我不太明白它是如何工作的。 到目前为止,我设置条件并构建查询,但从现在开始,我不知道如何将主题存储在变量中。

0 个答案:

没有答案