当我点击发送按钮时,我需要一次向 60 到 100 名学生发送邮件。如果我有 6 到 7 名学生,这很好,但是当我开始发送给 60 名学生时,我的代码显示以下错误
系统存储不足。服务器响应是:每个连接的电子邮件太多。
这是我的代码
受保护的无效btnsend_Click(对象发送者,EventArgs e){
if (drptopics.SelectedValue == "-1")
{
Response.Write(@"<script language='javascript'>alert('Please select one Topic');</script>");
}
else
{
SqlConnection conn = new SqlConnection();
conn.ConnectionString = "Data Source=xxxx; User Id=sa; Password=xxxx; Initial Catalog=xxxx; Integrated Security=SSPI;";
conn.Open();
SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandText = "select EMail_1 from Student_Info where Branch_Code='ap' and Student_ID in(select Student_ID from Admissions where Branch_Code='ap' and Batch_ID='" + txtbatchid.Text + "')";
cmd.CommandType = CommandType.Text;
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.SelectCommand = cmd;
DataSet ds = new DataSet();
da.Fill(ds);
if (ds.Tables[0].Rows[0][0] != null)
{
int count = ds.Tables[0].Rows.Count;
for (int i = 0; i < count; i++)
{
MailMessage mm = new MailMessage();
mm.To.Add(new MailAddress(ds.Tables[0].Rows[i][0].ToString()));
mm.From = new MailAddress("xxxxx@abc.com");
mm.Subject = "SMS and Interview Questions of Oracle 11g DBA";
mm.IsBodyHtml = true;
//Day 1 Architecture 1
if (drptopics.SelectedValue == "1")
{
Attachment attachment1 = new Attachment(Server.MapPath("~/Oracle 11g DBA/Day 1/Architecture-1-I.doc")); //create the attachment
mm.Attachments.Add(attachment1);
Attachment attachment2 = new Attachment(Server.MapPath("~/Oracle 11g DBA/Day 1/Architecture1-S.doc")); //create the attachment
mm.Attachments.Add(attachment2);
}
//Day 2 Architecture 2
else if (drptopics.SelectedValue == "2")
{
Attachment attachment1 = new Attachment(Server.MapPath("~/Oracle 11g DBA/Day 2/Architecture-2-I.doc")); //create the attachment
mm.Attachments.Add(attachment1);
Attachment attachment2 = new Attachment(Server.MapPath("~/Oracle 11g DBA/Day 2/Architecture2-S.doc")); //create the attachment
mm.Attachments.Add(attachment2);
}
mm.Body = "<html><head><body><h1>Thank you for choosing Wilshire</h1><br><b>Team Wilshire<b></body></head></html>";
SmtpClient s = new SmtpClient("smtp.net4india.com");
s.Send(mm);
}
}
}
请告诉我解决方案.......................