Pergunta

I am using SmtpClient to send emails.I am using the same code for last 2years,but from last day when i send 3 or more emails together one of them will fail.When i sent the failed one again it will sent out.Please help me i am using aibn.com mail server.

 public bool SendMail(string p_strFrom, string p_strDisplayName, string p_strTo, string p_strSubject, string p_strMessage , string strFileName)
     {
         try
         {
             p_strDisplayName = _DisplayName;
             string smtpserver = _SmtpServer;
             SmtpClient smtpClient = new SmtpClient();
             MailMessage message = new MailMessage();
             MailAddress fromAddress = new MailAddress(_From,_DisplayName);
             smtpClient.Host = _SmtpServer;
             smtpClient.Port = Convert.ToInt32(_Port);
             string strAuth_UserName = _UserName;
             string strAuth_Password = _Password;
             if (strAuth_UserName != null)
             {
                 System.Net.NetworkCredential SMTPUserInfo = new System.Net.NetworkCredential(strAuth_UserName, strAuth_Password);
                 smtpClient.UseDefaultCredentials = false;
                 if (_SSL)
                 {
                     smtpClient.EnableSsl = true;
                 }
                 smtpClient.Credentials = SMTPUserInfo;
             }
             message.From = fromAddress;

             message.Subject = p_strSubject;
             message.IsBodyHtml = true;
             message.Body = p_strMessage;
             message.To.Add(p_strTo);
             try
             {
                 smtpClient.Send(message);
                 Log.WriteSpecialLog("smtpClient mail sending first try success", "");
             }
              catch (Exception ee)
             {
                 Log.WriteSpecialLog("smtpClient mail sending first try Failed : " + ee.ToString(), "");
                 return false;
             }
             return true;
         }
         catch (Exception ex)
         {
             Log.WriteLog("smtpClient mail sending overall failed : " + ex.ToString());  
             return false;
         }
     }

Got the following error message

smtpClient mail sending Failed : 
        System.Net.Mail.SmtpException: 
                         Failure sending mail.
        System.NullReferenceException: 
                         Object reference not set to an instance of an object.
       at System.Net.Mail.SmtpConnection.GetConnection(String host, Int32 port)
       at System.Net.Mail.SmtpClient.Send(MailMessage message)
       --- End of Inner Exception Stack Trace ---
       at System.Net.Mail.SmtpClient.Send(MailMessage message)
Foi útil?

Solução

I have changed my mail server and now it is working fine.May be it depends by some mail service restriction to prevent flooding and/or spam.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top