1

現在のプロジェクトでは、「Helo」の応答を介して SMTP サーバーへの接続を確認するように求められます (「Ehlo」でも問題ありません。実際、とにかく接続を確認できる提案を聞くことができました)。C# でこれらの単純な 2 つのコマンドを入力するのと同じことを行う簡単な方法があるかどうか、Google に尋ねました。を使用したコーディングの経験が少しあるTcpClientので、文字列をバイト データとして送信する方法を知っています。

telnet smtp.gmail.com 465
helo localhost

しかし...、NETのSmtpClientクラスにはメンバーがないようですStream! そのような場合、どうすればコマンドを送信できますか?

4

3 に答える 3

3
public static class SmtpHelper
    {
        /// <summary>
        /// test the smtp connection by sending a HELO command
        /// </summary>
        /// <param name="config"></param>
        /// <returns></returns>
        public static bool TestConnection(Configuration config)
        {
            MailSettingsSectionGroup mailSettings = config.GetSectionGroup("system.net/mailSettings") as MailSettingsSectionGroup;
            if (mailSettings == null)
            {
                throw new ConfigurationErrorsException("The system.net/mailSettings configuration section group could not be read.");
            }
            return TestConnection(mailSettings.Smtp.Network.Host, mailSettings.Smtp.Network.Port);
        }

        /// <summary>
        /// test the smtp connection by sending a HELO command
        /// </summary>
        /// <param name="smtpServerAddress"></param>
        /// <param name="port"></param>
        public static bool TestConnection(string smtpServerAddress, int port)
        {
            IPHostEntry hostEntry = Dns.GetHostEntry(smtpServerAddress);
            IPEndPoint endPoint = new IPEndPoint(hostEntry.AddressList[0], port);
            using (Socket tcpSocket = new Socket(endPoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp))
            {
                //try to connect and test the rsponse for code 220 = success
                tcpSocket.Connect(endPoint);
                if (!CheckResponse(tcpSocket, 220))
                {
                    return false;
                }

                // send HELO and test the response for code 250 = proper response
                SendData(tcpSocket, string.Format("HELO {0}\r\n", Dns.GetHostName()));
                if (!CheckResponse(tcpSocket, 250))
                {
                    return false;
                }

                // if we got here it's that we can connect to the smtp server
                return true;
            }
        }

        private static void SendData(Socket socket, string data)
        {
            byte[] dataArray = Encoding.ASCII.GetBytes(data);
            socket.Send(dataArray, 0, dataArray.Length, SocketFlags.None);
        }

        private static bool CheckResponse(Socket socket, int expectedCode)
        {
            while (socket.Available == 0)
            {
                System.Threading.Thread.Sleep(100);
            }
            byte[] responseArray = new byte[1024];
            socket.Receive(responseArray, 0, socket.Available, SocketFlags.None);
            string responseData = Encoding.ASCII.GetString(responseArray);
            int responseCode = Convert.ToInt32(responseData.Substring(0, 3));
            if (responseCode == expectedCode)
            {
                return true;
            }
            return false;
        }
    }

使用法:

if (!SmtpHelper.TestConnection(ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None)))
{
    throw new ApplicationException("The smtp connection test failed");
}
于 2013-05-15T14:39:31.120 に答える
3

TcpClientリモート ポートに接続し、helo localhostコマンドを ASCII 文字列として送信するために使用します。

        TcpClient client = new TcpClient("smtp.gmail.com", 465);

        var stream = client.GetStream();

        var bytes = Encoding.ASCII.GetBytes("localhost helo");

        stream.Write(bytes, 0, bytes.Length);

ただし、ポート 465 は安全な通信用であると思われるため、SSL またはポート 25 を使用する必要があります。

于 2013-05-15T14:31:46.523 に答える