我正在尝试用 C# 中的套接字创建一个简单的 SMTP 客户端,这就是我所拥有的:
static void Main(string[] args)
{
try
{
Socket socket;
socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
// connect to the SMTP server
socket.Connect(new IPEndPoint(Dns.GetHostEntry("smtp.gmail.com").AddressList[0], int.Parse("587")));
PrintRecv(socket);
SendCommand(socket, string.Format("HELO {0}\r\n", Dns.GetHostName()));
SendCommand(socket, "STARTTLS\r\n");
Console.WriteLine("Done");
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
Console.ReadKey();
}
static void SendCommand(Socket socket, string com)
{
Console.WriteLine(">>>" + com);
socket.Send(Encoding.UTF8.GetBytes(com));
PrintRecv(socket);
}
static void PrintRecv(Socket socket)
{
byte[] buffer = new byte[500];
socket.Receive(buffer);
Console.WriteLine("<<<" + Encoding.UTF8.GetString(buffer, 0, buffer.Length));
}
如您所见,我正在使用 GMAIL,它需要使用 SSL ...我的问题是当我尝试像这样使用 SSLStream 时:
Stream s = GenerateStreamFromString("quit\r\n");
SslStream ssl = new SslStream(s); //All OK until here
ssl.AuthenticateAsClient(System.Environment.MachineName);// <<< MY PROBLEM
我想我不完全理解这个 SslStream,我搜索了很多(在 MSDN 上看到了这些例子)......简单来说,我需要知道如何设置这个SslStream以在 SMTP 上使用。