1

コンソール アプリケーションからメールを送信しようとしていますが、エラーがスローされます。

メールの送信に失敗しました

エラーの原因がわかりません。別のマシンで同じコードを試してみましたが、問題なく動作しています。スタックトレースは次のとおりです。

System.Net.Mail.SmtpException: Failure sending mail. ---> System.Net.WebExceptio
n: Unable to connect to the remote server ---> System.Net.Sockets.SocketExceptio
n: The requested address is not valid in its context 66.96.147.108:25
   at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddre
ss socketAddress)
   at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Sock
et 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 ow
ner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket
6, 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, GeneralAsyncD
elegate 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 PaymentReminder.Program.SendMail(List`1 SourceList) in C:\Documents and Se
ttings\amols\my documents\visual studio 2010\Projects\PaymentReminder\PaymentRem
inder\Program.cs:line 110
InnerException is: System.Net.WebException: Unable to connect to the remote serv
er ---> System.Net.Sockets.SocketException: The requested address is not valid i
n its context 66.96.147.108:25
   at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddre
ss socketAddress)
   at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Sock
et 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 ow
ner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket
6, 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, GeneralAsyncD
elegate 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)

これが私のコードです:

List<PaymentReminderList> prList = SourceList;            
MailAddress fromMail = new MailAddress(ConfigurationManager.AppSettings.Get("FromEmail"));
string NetworkUser = ConfigurationManager.AppSettings.Get("Network_UserName");
string Password = ConfigurationManager.AppSettings.Get("Password");
string Host = ConfigurationManager.AppSettings.Get("Host");
int Port = int.Parse(ConfigurationManager.AppSettings.Get("Port"));
string FromMail = ConfigurationManager.AppSettings.Get("FromEmail");
string ToMail = ConfigurationManager.AppSettings.Get("ToMail");
string mailBody = "Respected xxx, <br>This is Test Mail.<br> [[List]]  <br><br> Sincerely, <br> ABC<br>";

string mailContent = "";

foreach (var item in prList)
{
    mailContent += "" + item.abc + " | " + item.pqr + " | " + item.xyz+"<br>";
}

mailBody.Replace("[[List]]", mailContent);

//Console.WriteLine("Mail To");
MailAddress to = new MailAddress(ToMail);

//Console.WriteLine("Mail From");
MailAddress from = new MailAddress(FromMail);

MailMessage mail = new MailMessage(from, to);

Console.WriteLine("Subject");
mail.Subject = "This is a Reminder Mail";

Console.WriteLine("Your Message");
//mail.Body = Console.ReadLine();
mail.Body = mailBody;

mail.From = from;
mail.To.Add(to);

mail.IsBodyHtml = true;
mail.Priority = MailPriority.High;

System.Net.NetworkCredential NetworkCred = new System.Net.NetworkCredential();
NetworkCred.UserName = NetworkUser;
NetworkCred.Password = Password;

SmtpClient smtp = new SmtpClient(Host, Port);
smtp.Credentials = NetworkCred;

Console.WriteLine("Sending email...");

try
{
    smtp.Send(mail);
}
catch (Exception ex)
{
    Console.WriteLine(ex);   //Should print stacktrace + details of inner exception

    if (ex.InnerException != null)
        Console.WriteLine("InnerException is: {0}", ex.InnerException);
}
4

2 に答える 2

0

リモート マシンはセキュア SMTP を実装していますか? その場合は、ポート プロパティを 465 に設定する必要があります。

http://msdn.microsoft.com/en-us/library/system.net.mail.smtpclient.port.aspx

于 2013-05-10T11:30:04.223 に答える
0

あなたのコードを自分のメール サーバーでテストしたところ、問題なく動作しました。

問題は構成にある可能性があります。コードで認証を使用しますが、通常は接続用に SSL を有効にし ( SmtpClient.EnableSslを参照)、ポートを 465 に設定する必要があります。通常、ポート 25 は認証を必要としません。

于 2013-05-10T11:41:28.360 に答える