1
votes

I am using This post and This Post to create simple email sending Application on c# console App. But I am getting error when sent email on gmail ...

{"A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond XXX"}

Here is my Code :

class Program
    {
        private static string to = "[email protected]";
        private static string from = "[email protected]";
        private static string subject="07/10/14";
        private static string body;
        private static string address = "[email protected]";
        static void Main(string[] args)
        {

            MailMessage mail = new MailMessage();
            mail.To.Add(to);
            mail.From = new MailAddress(from);
            mail.Subject = subject;
            mail.Body = body;
            mail.IsBodyHtml = true;
            SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587);
            smtp.EnableSsl = true;
            smtp.UseDefaultCredentials = false;
            smtp.Credentials =
                 new System.Net.NetworkCredential(address, "YYYYY");
            smtp.Send(mail);
            Console.WriteLine("Sent");
            Console.ReadLine();
        }


}

My App.Config File :

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
  </appSettings>
  <system.net>
    <mailSettings>
      <smtp from="[email protected]">
        <network defaultCredentials="false"
        userName="[email protected]"
           password="YYYYY"
        host="smtp.gmail.com" port="587" enableSsl="true"/>
      </smtp>
    </mailSettings>

  </system.net>
</configuration>

I have read similar post ..Some suggest convert url into stream ..I did not get it ..Some says problem might be in internet connection ..other says set smtp server to 587 ..I have applied all changes ..still it shows same error

Please Suggest

1
Did you try the following? mail.To.Add(new MailAddress("[email protected]"));Koryu
Maybe a firewall issue?DGibbs
I added mail.To.Add(new MailAddress("[email protected]")); ...still not working ...user3767164
@DGibbs It is not on my system ...Might be on company gateway ..what can be done in that caseuser3767164
my last idea is to try port 465 when using ssl. also that might be interesting: Sending mail from a printer, scanner or appKoryu

1 Answers

0
votes

I have Solved this problem ...

Just use your Hosting Company Smtp and Port ..not gmail or other one..If you are sending from a hosting company ....Consult your IT Desk for providing your company smtp address and port ..I did that..that solved the Issue

This is My Working Code ..it is also sending to gmail by company SMTP

class Program
    {
        private static string to = "[email protected]";
        private static string from = "[email protected]";
        private static string subject = "test Mail sent By Code";
        private static string body = "Mail sent By Code";

        static void Main(string[] args)
        {
            try
            {

                MailMessage mail = null;

                using (mail = new MailMessage(new MailAddress(from), new MailAddress(to)))
                {

                    mail.Subject = subject;
                    mail.Body = body;
                    mail.To.Add("[email protected]");

                    SmtpClient smtpMail = null;
                    using (smtpMail = new SmtpClient("HostingComapny smtp Address"))
                    {
                        smtpMail.Port = Hosting Company Port No.;
                        smtpMail.EnableSsl = false;
                        smtpMail.Credentials = new NetworkCredential("youruserName", "yourPassword");

                        smtpMail.UseDefaultCredentials = false;
                        // and then send the mail
                        ServicePointManager.ServerCertificateValidationCallback =
    delegate(object s, X509Certificate certificate,
             X509Chain chain, SslPolicyErrors sslPolicyErrors)
    { return true; };
                        smtpMail.Send(mail);
                        Console.WriteLine("sent");
                        Console.ReadLine();

                    }

                }

            }
            catch (Exception ex)
            {

                throw ex;
            }

        }


    }