私は、C# コードから電子メールを送信する多くの例を見てきSystem.Net.Mail.SmtpClient
ました。初めてメールを送信できましたが、その後、A connect request was made on an already connected socketというエラーが表示されます。
次のコードを使用してメールを送信しています:
using (MailMessage mail = new MailMessage())
{
using (SmtpClient mailer = new SmtpClient("smtp.server.com"))
{
Console.Write("Sending mails...");
mail.From = new MailAddress("from@mail.com");
mail.To.Add("myaddress@mail.com");
mail.Subject = "test-subject";
mail.Body = "test-body";
mailer.Port = 25;
mailer.Credentials = new System.Net.NetworkCredential("from@mail.com", "from-password");
mailer.EnableSsl = true;
try
{
mailer.Send(mail);
Console.WriteLine("Mail sent");
}
catch (Exception e)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("\rCannot send mail, an error occured : {0}", e);
Console.ResetColor();
}
}
}
エラー メッセージは次のとおりです。
Cannot send mail, an error occured : System.Net.Mail.SmtpException: Failure sending mail. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connect request was made on an already connected socket 200.200.200.200:25
at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Int32 timeout, Exception& exception)
--- End of inner exception stack trace ---
at System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6, Int32 timeout)
at System.Net.PooledStream.Activate(Object owningObject, Boolean async, Int32 timeout, GeneralAsyncDelegate asyncCallback)
at System.Net.PooledStream.Activate(Object owningObject, GeneralAsyncDelegate asyncCallback)
at System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout)
at System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint)
at System.Net.Mail.SmtpTransport.GetConnection(ServicePoint servicePoint)
at System.Net.Mail.SmtpClient.GetConnection()
at System.Net.Mail.SmtpClient.Send(MailMessage message)
--- End of inner exception stack trace ---
at System.Net.Mail.SmtpClient.Send(MailMessage message)
at TestApp.Program.Main(String[] args) in D:\Desktop\TestApp\TestApp\Program.cs:line 290
ご覧のとおり、エラーが発生した場合に接続が自動的に閉じられるように、両方の節MailMessage
とSmptClient
内部節のインスタンスを保持しています。using
しかし、起動後に初めてメールを送信し、その後の他のすべての試行に失敗します。
SMTP サーバーはプロキシの背後にあり、ファイアウォール クライアントはシステム上で実行されています。私が考える限り、ここではプロキシは問題ではありません。
コードにエラーはありますか? どうすれば動作させることができますか?
Outlook API を使用してみましたが、すべてのメールを送信する前にユーザーの認証が必要です。私はこの振る舞いを望んでいません。
PS : この場合は関係のない IP アドレスやサーバー名などの詳細を削除しました。
前もって感謝します :)