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("someemail@emailme.com");
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="someemail@myemail.com">
<network host="smtp.gmail.com" port="465" userName="someemail@myemail.com" password="MyLovelyPassword" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>