1

我正在尝试通读 gmail 帐户以获取从手机(我的手机)发送到那里的 gps 数据(在电子邮件的文本中)

using (Pop3Client cl = new Pop3Client())
            {
                cl.UserName = "crash893";
                cl.Password = "password";
                cl.ServerName = "pop.gmail.com";
                cl.AuthenticateMode = Pop3AuthenticateMode.Pop;
                cl.Ssl = true;
                cl.Authenticate();
                ///Get first mail of my mailbox
                Pop3Message mg = cl.GetMessage(1);  <<<<<<<<<< ERROR
                String MyText = mg.BodyText;
                ///If the message have one attachment
                Pop3Content ct = mg.Contents[0];
                ///you can save it to local disk
                ct.DecodeData("c:\\test.txt");
            }

但我在“获取邮箱消息的第一封邮件”时遇到异常

"Higuchi.Net.Pop3.Pop3ConnectException: Pop3 connection is closed
at Higuchi.Net.Pop3.Pop3Client.SendCommand(String inCommand)
at Higuchi.Net.Pop3.Pop3Client.Execute(String inCommand, Boolean inIsMultiLine)
at Higuchi.Net.Pop3.Pop3Client.Execute(Pop3Command inCommand)
at Higuchi.Net.Pop3.Pop3Client.GetMessage(Int64 inMailIndex)"}

理想情况下,我想做的是打开这个阅读此帐户中针对某个主题行的所有新未读电子邮件,然后阅读正文中的数据并将它们标记为已读

有谁知道为什么它会出错

有没有人对 c#mail 有任何经验,他们可以为我指出正确的方向来阅读和制作已阅读的电子邮件等

4

4 回答 4

3

无法使用 POP 协议将电子邮件标记为已读。

尝试使用 IMAP。

于 2009-06-16T20:13:46.963 回答
3

cl.端口 = 995;

于 2009-06-16T20:15:35.137 回答
1
        using (Pop3Client cl = new Pop3Client())
        {
            cl.UserName = "ewgsdssw";
            cl.Password = "sdgwsegw";
            cl.ServerName = "pop.gmail.com";
            cl.AuthenticateMode = Pop3AuthenticateMode.Pop;
            cl.Port = 995;
            cl.Ssl = true;
            cl.Authenticate();
            ///Get first mail of my mailbox
            ///
            int total = Convert.ToInt16(cl.GetTotalMessageCount());

            while (total >= 1)
            {
                Pop3Message mg = cl.GetMessage(total);
                if (mg.Subject == "I am Here")
                {

                    // http://maps.google.com/maps?q=38.89552,-77.43265
                    //(+/- 76 metres.)

                    string location = mg.BodyText;
                    location = location.Replace("http://maps.google.com/maps?q=","~");
                    location = location.Replace("metres.)\r\n\r\n","~");

                    location = location.Split('~')[1];

                    location = location.Replace("(+/- ", ",");
                    location = location.Replace("\r\n", "");


                    string[] data = location.Split(',');
                    string lat = data[0];
                    string lon = data[1];
                    string res = data[2];
                    DateTime time = mg.Date;

                    textBox1.AppendText(string.Format("Lat: {0} LON: {1} Res: {2} TIME: {3}\r\n",lat,lon,res,time.ToString()));

                }

                total--;
            }

        }
于 2009-06-16T21:12:31.573 回答
0

我没有使用 C#Mail 的经验,这个答案可能无济于事,但我过去在尝试编写电子邮件发送/接收相关代码时经历过奇怪的事情。

原来我们在工作中运行的防病毒软件有一个允许的 .EXE 的白名单,可以进行入站/出站 POP3 或 SMTP 连接。有没有可能这是你的问题?

于 2009-06-16T20:14:53.000 回答