简体   繁体   中英

C# Failure sending mail

I have created a application, in that I have give a option to send a mail. It was worked properly till yesterday. But today I got an error while sendig a mail like "Failure sending mail. " .For that I have given my code below, please help me to correct it.

 protected void Button1_Click(object sender, EventArgs e)
    {
        try
        {
            if (TextBox1.Text == "")
            {

                string alertmessage = "";
                alertmessage = "Email ID. cannot be blank ";
                this.CreateMessageAlert(this, alertmessage, "alertKey");
                TextBox1.Focus();
            }
            else if (TextBox2.Text == "")
            {

                string alertmessage = "";
                alertmessage = "CC To cannot be blank ";
                this.CreateMessageAlert(this, alertmessage, "alertKey");
                TextBox2.Focus();
            }
            else if (TextBox3.Text == "")
            {

                string alertmessage = "";
                alertmessage = "Subject cannot be blank ";
                this.CreateMessageAlert(this, alertmessage, "alertKey");
                TextBox3.Focus();
            }
            else if (TextBox4.Text == "")
            {

                string alertmessage = "";
                alertmessage = "Message Body cannot be blank ";
                this.CreateMessageAlert(this, alertmessage, "alertKey");
                TextBox4.Focus();
            }
            //else if (upSignature.FileName == "")
            //{
            //    ctr = 1;
            //    string alertmessage = "";
            //    alertmessage = "Attachment  Missing...";
            //    this.CreateMessageAlert(this, alertmessage, "alertKey");
            //    upSignature.Focus();
            //}

            else
            {


                string photo = "Enquiry" + Session["MRNO"].ToString() + FileUpload1.FileName;
                string strpath = Request.MapPath("~/");
                FileUpload1.SaveAs(strpath + "/Enquiry/" + photo);


                try
                {
                    MailMessage mail = new MailMessage();
                    mail.To.Add(new MailAddress(TextBox1.Text.Trim()));
                    mail.From = new MailAddress("purchase@oeg.co.in");
                    mail.Subject = "Enquiry for MRNO " + " " + " " + Session["MRNO"].ToString() + " " + " " + "Reg.";
                    mail.CC.Add(TextBox2.Text.Trim());
                    mail.Body = TextBox4.Text.Trim();

                    mail.Attachments.Add(new Attachment(FileUpload1.PostedFile.InputStream, FileUpload1.FileName));
                    mail.Attachments.Add(new Attachment(FileUpload2.PostedFile.InputStream, FileUpload2.FileName));
                    //Attachment attach = new Attachment(strpath + "/Enquiry/" + photo);
                    //mail.Attachments.Add(attach);


                    SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587);

                    smtp.EnableSsl = true;

                    smtp.UseDefaultCredentials = false;
                    smtp.Credentials = new NetworkCredential("purchase@oeg.co.in", "xxxxx");
                    //smtp.Credentials = new NetworkCredential("purchaseoeg", "xxxxx");
                    smtp.Send(mail);

                    string alertmessage = "";
                    alertmessage = "Mail Has Been Sent";
                    this.CreateMessageAlert(this, alertmessage, "alertKey");


                    //   Page.RegisterStartupScript("close", "<script language=javascript>self.close();</script>");

                }
                catch (Exception ex)
                {
                    Response.Write(ex.Message);
                }
            }
        }
        catch (Exception ex1)
        {
            Response.Write(ex1.Message);
        }

    }

If it used to work and now it doesn't it could well be the SMTP server.

<system.net>
  <mailSettings>
    <smtp deliveryMethod="SpecifiedPickupDirectory">
      <specifiedPickupDirectory pickupDirectoryLocation="C:\TestMailMessages\" />
    </smtp>
  </mailSettings>
</system.net>

Place the above code in your App.config or Web.config. When you send a message (via var smtpClient = new SmtpClient();) it will now be stored as a file in the directory of " pickupDirectoryLocation ".

If the messages arrive there OK, then your code is fine

You might then move on to testing your smtp settings / testing the server. There are lots of ways to do this, including using Telnet.

If the issue is intermittent maybe add retry logic to the SMTP send.

public string btnSendmail( )
{
    try
    {
        //Code for send Email
        string msg = txtEmail.Text;
        MailMessage sendMailforSA = new MailMessage();
        SmtpClient smtpforSA = new SmtpClient();
        string subjectforSA = null;
        subjectforSA = "Thanks for apply";
        System.Net.NetworkCredential credforSA = new System.Net.NetworkCredential("yourGmailID@gmail.com", "password");
        sendMailforSA.To.Add("ToEmailID");

        sendMailforSA.From = new MailAddress("yourGmailID@gmail.com");
        sendMailforSA.Subject = subjectforSA.ToString();
        sendMailforSA.Body = "hiii This is Test Message";
        sendMailforSA.IsBodyHtml = false;
        smtpforSA.Host = "smtp.gmail.com";
        smtpforSA.Port = 587;
        smtpforSA.EnableSsl = true;
        smtpforSA.UseDefaultCredentials = false;
        smtpforSA.Credentials = credforSA;
        smtpforSA.Send(sendMailforSA);
        return "Email successfully sent.";
    }
    catch (Exception ex)
    {
        return  "Send Email Failed." + ex.Message;
    }
} 

Also write in web.config file:

<system.net>
    <mailSettings>
        <smtp from="yourGmailID@gmail.com">
            <network host="smtp.gmail.com" port="587" userName="yourGmailID@gmail.com"    password="password" defaultCredentials="false"/>
        </smtp>
    </mailSettings>
</system.net>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM