1

Gmailアカウントからメールを読みたいです。ログインしようとしましたが、成功しましたが、受信トレイからメールを取得できませんでした。以下は、ログインに使用したコードです。

try
        {

            TcpClient tcpclient = new TcpClient(); // create an instance of TcpClient
            tcpclient.Connect("pop.gmail.com", 995); // HOST NAME POP SERVER and gmail uses port number 995 for POP 
            System.Net.Security.SslStream sslstream = new SslStream(tcpclient.GetStream()); // This is Secure Stream // opened the connection between client and POP Server
            sslstream.AuthenticateAsClient("pop.gmail.com"); // authenticate as client 
            //bool flag = sslstream.IsAuthenticated; // check flag 
            System.IO.StreamWriter sw = new StreamWriter(sslstream); // Asssigned the writer to stream
            System.IO.StreamReader reader = new StreamReader(sslstream); // Assigned reader to stream
            sw.WriteLine("username@gmail.com"); // refer POP rfc command, there very few around 6-9 command
            sw.Flush(); // sent to server
            sw.WriteLine("password");
            sw.Flush();
            sw.WriteLine("RETR 1"); // this will retrive your first email 
            sw.Flush();
            sw.WriteLine("Quit "); // close the connection
            sw.Flush();
            string str = string.Empty;
            string strTemp = string.Empty;
            while ((strTemp = reader.ReadLine()) != null)
            {
                if (strTemp == ".") // find the . character in line
                {

                    break;
                }

                if (strTemp.IndexOf("-ERR") != -1)
                {
                    break;
                }
                str += strTemp;
            }
            Response.Write(str);
            Response.Write("" + "Congratulation.. ....!!! You read your first gmail email ");
        }
        catch (Exception ex)
        {
            Response.Write(ex.Message);
        }

受信トレイから実際のメールを取得する方法を教えてください。

4

2 に答える 2

1

Mail.netをご覧になったことがありますか。自分で使用する必要はありませんでしたが、ここでは良い点があります。

乾杯

于 2011-09-08T22:29:44.730 に答える
0
  1. コマンドを発行したらすぐにサーバーの応答を読み取る必要があります。
  2. Gmailに正常にログインしていません。USERPASSなどのPOP3コマンドを使用する必要があります。
  3. 電子メールに「-ERR」テキストが含まれている場合、コードは失敗します
  4. str + = strTemp; 大きな添付ファイル付きのメールを復活させると、アプリが強制終了されます

車輪の再発明をしないことをお勧めします-POP3アクセス用のライブラリがあります。

于 2011-09-12T10:02:50.040 に答える