Anicho
Anicho

Reputation: 2667

using System.Net.Mail To send smtp mail via google gets me a time out exception

I am trying to send email using smtp authentication through google but I am constantly getting a timed out error and no idea what it might be from the following code its not my firewall or my isp blocking smtp ports so its most probably the code:

    MailMessage msg = new MailMessage();

    String BodyMsg;

    BodyMsg = "Hey " + TxtBoxUsername.Text + "@" + "Welcome to Tiamo your username and password are:@Username: "
        + TxtBoxUsername.Text + "@Password: " + PasswordString + "@You have succesffully registered, you can now login."
        + "@Thank You@Tiamo Team";

    BodyMsg = BodyMsg.Replace("@", System.Environment.NewLine);

    msg.To.Add(new MailAddress(TxtBoxEmail.Text));
    msg.From = new MailAddress("[email protected]");
    msg.Subject = "Re: Welcome to Tiamo";
    msg.Body = BodyMsg;

    SmtpClient client = new SmtpClient() ;
    client.EnableSsl = true;                                  
    client.Send(msg); 

and this is my web.config email smtp settings:

  <system.net>
    <mailSettings>
      <smtp from="[email protected]">
        <network host="smtp.gmail.com" port="465" userName="[email protected]" password="MyLovelyPassword" defaultCredentials="true"/>
      </smtp>
    </mailSettings>
  </system.net>

Upvotes: 3

Views: 3239

Answers (2)

danfer
danfer

Reputation: 381

In my case it was the order of the following code lines:

client.UseDefaultCredentials = false;

client.Credentials = new NetworkCredential("[email protected]", "mypasswordforemail");

As it may seem logical, UseDefaultCredentials=false; should go first.

Regards.

Upvotes: 1

Gambrinus
Gambrinus

Reputation: 2136

I'm affraid google uses another port -> 587 or at least that's what they tell on their configure-gmail-access-in-outlook-help-website

Upvotes: 3

Related Questions