C#怎样测试SmtpClient客户端是否成功连接SmtpServer?

来源:互联网 发布:知乎 老婆sm经历 编辑:程序博客网 时间:2024/04/29 08:01

参考 我的博文 留个纪念 尤其是Hash码 - 在.NET中使用SMTP发送邮件

引用chinafcl 并整理

请问SmtpClient中只提供邮箱地址,邮箱密码,和SMTP服务器地址,怎么测试邮箱地址和密码是否正确?(就类似邮件客户端的测试连接功能)

 

private bool CheckSmtp(string smtpServer, int port,string username,string password)
        {
            TcpClient tcpClient = new TcpClient(smtpServer, port);
            NetworkStream  stream = tcpClient.GetStream();
           
            if(!WaiteFor(stream,"220")) return false ;

            SendCommand(stream, "HELO 211.152.50.xxx/r/n");
            if (!WaiteFor(stream, "250")) return false;

            SendCommand(stream, "AUTH LOGIN/r/n");
            if (!WaiteFor(stream, "334")) return false;

            SendCommand(stream,Base64Encode(username)+  "/r/n");
            if (!WaiteFor(stream, "334")) return false;

            SendCommand(stream, Base64Encode(password) + "/r/n");
            if (!WaiteFor(stream, "235")) return false;


            return true;

        }

        private bool  WaiteFor(NetworkStream stream, string strCode)
        {
            int StreamSize;
            byte[] ReadBuffer = new byte[1024];
            StreamSize = stream.Read(ReadBuffer, 0, ReadBuffer.Length);
            string Returnvalue = Encoding.Default.GetString(ReadBuffer).Substring(0, StreamSize);

            Console.WriteLine(Returnvalue);

            return Returnvalue.Substring(0, 3).Equals(strCode);
        }
        private void SendCommand(NetworkStream stream,string strCmd)
        {
            byte[] WriteBuffer;

            WriteBuffer = Encoding.Default.GetBytes(strCmd);

            stream.Write(WriteBuffer, 0, WriteBuffer.Length);
           
        }

        private string Base64Encode(string str)
        {
            byte[] barray;
            barray = Encoding.Default.GetBytes(str);
            return Convert.ToBase64String(barray);
        }

原创粉丝点击