下面的代码显示“341”,但是在我的框中有超过2000条消息,我不知道如何访问它们。
using (Pop3Client client = new Pop3Client())
{
bool useSsl = true;
client.Connect("pop.gmail.com", 995, useSsl);
client.Authenticate("myusername", "mypassword");
int messageCount = client.GetMessageCount();
Console.WriteLine(messageCount);
}
此341号码是对我邮箱中最早的341封邮件的引用,我看不到任何其他邮件。在我在gmail.com上的邮箱设置中,我已经将Pop3打开了任何消息,这没有任何效果。当我使用TcpClient和SslStream类时,我得到相同的结果。您能否提出任何想法如何才能完全访问我的邮箱消息?