使用 MailKit 从 gmail 检索电子邮件

问题描述 投票:0回答:2

我使用下面的代码来检索电子邮件。但我在尝试连接服务器时遇到了 Socket 异常 (client.Connect(uri, cancel.Token);)。

未处理的异常: System.Net.Sockets.SocketException:连接超时

using MailKit;
using MimeKit;
using System.Net;
using System.Threading;
using MailKit.Net.Pop3;

namespace TestMail
{
class Program
{
    public static void Main (string[] args)
    {

            using (var client = new Pop3Client ()) {

            var Server  = "gmail.com";
            var Port = "995";
            var UseSsl = false;
            var credentials = new NetworkCredential("[email protected]", "abc");
            var cancel = new CancellationTokenSource ();
            var uri = new Uri(string.Format("pop{0}://{1}:{2}", (UseSsl ? "s" : ""), Server, Port));

            //Connect to email server
            client.Connect(uri, cancel.Token);
            client.AuthenticationMechanisms.Remove ("XOAUTH2");
            client.Authenticate (credentials, cancel.Token);

            //Fetch Emails
            for (int i = 0; i < client.Count; i++) {
                var message = client.GetMessage (i);
                Console.WriteLine ("Subject: {0}", message.Subject);
            }

            //Disconnect Connection
            client.Disconnect(true);
        }
    }

}

}
c# mailkit
2个回答
0
投票

我很确定您需要使用

pop.gmail.com
而不仅仅是
gmail.com
作为服务器字符串。


0
投票

使用以下代码,我只是在我的一个项目中测试它并且运行良好

   using (var client = new Pop3Client()) {
 // For demo-purposes, accept all SSL certificates (in case the server supports STARTTLS) 
 client.ServerCertificateValidationCallback = (s, c, h, e) => true; 
 client.SslProtocols = System.Security.Authentication.SslProtocols.Tls12;
 client.Connect("pop.gmail.com", "995", true);
 client.AuthenticationMechanisms.Remove("XOAUTH2"); 
 client.Authenticate(MailUsername, MailPassword);
..
....
......
}
© www.soinside.com 2019 - 2024. All rights reserved.