gpt4 book ai didi

c# - TCPClient 连接到 Gmail 但未收到第一条消息

转载 作者:太空宇宙 更新时间:2023-11-03 13:42:34 24 4
gpt4 key购买 nike

我正在使用此代码连接到 gmail。每个 WriteLine() 都被写入。所以大概一切正常?但是,没有消息写入控制台。怎么了?这是我的代码:

using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net.Security;

namespace RemoteControl
{
class MailClient
{
static void Main(string[] args)
{
try
{
// create an instance of TcpClient
Console.WriteLine("Connecting...");
TcpClient tcpclient = new TcpClient();
tcpclient.Connect("imap.gmail.com", 993);
SslStream sslstream = new SslStream(tcpclient.GetStream());
sslstream.AuthenticateAsClient("imap.gmail.com");
Console.WriteLine("Reached Gmail.");
StreamWriter sw = new StreamWriter(sslstream);
System.IO.StreamReader reader = new StreamReader(sslstream);
Console.WriteLine("Sending username.");
sw.WriteLine("USER user@gmail.com");
Console.WriteLine("Sending password.");
sw.WriteLine("PASS pass");
Console.WriteLine("Receiving Message.");
sw.WriteLine("RETR 1");
Console.WriteLine("Complete.");
tcpclient.Close(); // close the connection
Console.ReadLine();
}
catch (IOException e)
{
Console.WriteLine(e);
}
}
}
}

最佳答案

** 根据我的理解,您的问题是想要使用 C# 阅读电子邮件。如果这是真的,我认为 socket pop3 是解决您问题的不错选择。例如:**

using System.IO;
using System.Net.NetworkInformation;
using System.Net.Security;
using System.Net.Sockets;
public partial class Default3 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
// create an instance of TcpClient
TcpClient tcpclient = new TcpClient();
tcpclient.Connect("pop3.live.com", 995);
System.Net.Security.SslStream sslstream = new SslStream(tcpclient.GetStream());
sslstream.AuthenticateAsClient("pop3.live.com");
StreamWriter sw = new StreamWriter(sslstream);
System.IO.StreamReader reader = new StreamReader(sslstream);
sw.WriteLine("USER xxx@live.com"); sw.Flush();
sw.WriteLine("PASS xxxx****"); sw.Flush();
sw.WriteLine("RETR 1");
sw.Flush();
sw.WriteLine("Quit ");
sw.Flush();
string str = string.Empty;
string strTemp = string.Empty;
while ((strTemp = reader.ReadLine()) != null)
{
if (".".Equals(strTemp))
{
break;
}
if (strTemp.IndexOf("-ERR") != -1)
{
break;
}
str += strTemp;
}
Response.Write(str);
reader.Close();
sw.Close();
tcpclient.Close(); // close the connection
}
}

关于c# - TCPClient 连接到 Gmail 但未收到第一条消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12993386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com