是什么原因导致SMTP.MAIL:操作已超时?

时间:2012-02-19 09:24:04

标签: c# asp.net smtpclient

我正在创建一个基于Web的Intranet应用程序,它将根据管理员的选择向其用户发送通知。

我正确开发了邮件页面,它可以正常使用15或20个用户。现在,我有200多个用户,所以当我运行此页面时出现以下错误,我不知道原因:

  

异常详细信息:System.Net.Mail.SmtpException:操作有   超时了。

我的代码背后(C#):

protected void Page_Load(object sender, EventArgs e)
    {
        SendEmailTOAllUser();
    }


    protected void SendEmail(string toAddresses, string fromAddress, string MailSubject, string MessageBody, bool isBodyHtml)
    {
        SmtpClient sc = new SmtpClient("MAIL.companyDomainName.com");
        try
        {
            MailMessage msg = new MailMessage();
            msg.From = new MailAddress("pssp@companyDomainName.com", "PMOD Safety Services Portal (PSSP)");

            // In case the mail system doesn't like no to recipients. This could be removed
            //msg.To.Add("pssp@companyDomainName.com");

            msg.Bcc.Add(toAddresses);
            msg.Subject = MailSubject;
            msg.Body = MessageBody;
            msg.IsBodyHtml = isBodyHtml;
            //Response.Write(msg);
            sc.Send(msg);
        }
        catch (Exception ex)
        {
            throw ex;
        }

    }

    protected void SendEmailTOAllUser()

    {
        string connString = "Data Source=localhost\\sqlexpress;Initial Catalog=psspEmail;Integrated Security=True";

        using (SqlConnection conn = new SqlConnection(connString))
        {
            var sbEmailAddresses = new System.Text.StringBuilder(1000);
            string quizid = "";

            // Open DB connection.
            conn.Open();

            string cmdText = "SELECT MIN (QuizID) As mQuizID FROM dbo.QUIZ WHERE IsSent <> 1";
            using (SqlCommand cmd = new SqlCommand(cmdText, conn))
            {
                SqlDataReader reader = cmd.ExecuteReader();
                if (reader != null)
                {
                    while (reader.Read())
                    {
                        // There is only 1 column, so just retrieve it using the ordinal position
                        quizid = reader["mQuizID"].ToString();

                    }
                }
                reader.Close();
            }

            string cmdText2 = "SELECT Username FROM dbo.employee";
            using (SqlCommand cmd = new SqlCommand(cmdText2, conn))
            {
                SqlDataReader reader = cmd.ExecuteReader();
                if (reader != null)
                {
                    while (reader.Read())
                    {
                        var sName = reader.GetString(0);
                        if (!string.IsNullOrEmpty(sName))
                        {
                            if (sbEmailAddresses.Length != 0)
                            {
                                sbEmailAddresses.Append(",");
                            }
                            // Just use the ordinal position for the user name since there is only 1 column
                            sbEmailAddresses.Append(sName).Append("@companyDomainName.com");
                        }
                    }
                }
                reader.Close();
            }

            string cmdText3 = "UPDATE dbo.Quiz SET IsSent = 1 WHERE QuizId = @QuizID";
            using (SqlCommand cmd = new SqlCommand(cmdText3, conn))
            {
                // Add the parameter to the command
                var oParameter = cmd.Parameters.Add("@QuizID", SqlDbType.Int);
                // Get a local copy of the email addresses
                var sEMailAddresses = sbEmailAddresses.ToString();


                    string link = "<a href='http://pmv/pssp/StartQuiz.aspx?testid=" + quizid + "'> Click here to participate </a>";
                    string body = @"Good day, <br /><br />
                                <b> Please participate in the new short safety quiz </b>"
                                        + link +
                                        @"<br /><br />
                            Also, give yourself a chance to gain more safety culture by reading the PMOD Newsletter.
                            <br /> <br /><br /> <br />
                            This email was generated using the <a href='http://pmv/pssp/Default.aspx'>PMOD Safety Services Portal (PSSP) </a>. 
                            Please do not reply to this email.
                            ";

                    SendEmail(sEMailAddresses, "", "Notification of New Weekly Safety Quiz", body, true);

                    // Update the parameter for the current quiz
                    oParameter.Value = quizid;
                    // And execute the command
                    cmd.ExecuteNonQuery();
            }
            conn.Close();
        }
    }

请帮忙吗?

3 个答案:

答案 0 :(得分:2)

  1. 确保您的SMTP服务器在线,因为我的测试&#34; telnet MAIL.Aramco.com 25&#34;,它显示服务器不可用。
  2. 作为您的代码,您使用的是SMTP服务器,但没有身份验证,是否支持匿名访问?

答案 1 :(得分:2)

添加 sc.timeout = 600000(10分钟) 在发送电子邮件方法。

如果电子邮件发送需要更多时间来完成,那么<​​/ p>

答案 2 :(得分:1)

如果它是一个并发问题,因为看起来使用SendAsync可以帮助解决你的问题,正如在post

中讨论的那样

Here是MSDN中可能有用的一个示例。您应该使用SendAsync替换Send方法,如此代码所示。

相关问题