如果使用 OpenPop.Net 访问 gmail,我无法获得正确的消息计数。它与 hotmail 完美配合,提供我收件箱中的正确电子邮件数量
pop3Client.Connect(popServerTextBox.Text, int.Parse(portTextBox.Text), useSslCheckBox.Checked);
pop3Client.Authenticate(loginTextBox.Text, passwordTextBox.Text,OpenPop.Pop3.AuthenticationMethod.UsernameAndPassword);
int count = pop3Client.GetMessageCount();