SmtpClient smtpclient = new SmtpClient();
smtpclient.Host = "smtp.gmail.com";
smtpclient.Port = 587;
MailMessage mail = new MailMessage();
mail.IsBodyHtml = true;
mail.Body = "Your email body ";
mail.From = new MailAddress("your email address");
mail.To.Add("To email address");
mail.Subject = "Subject";
smtpclient.EnableSsl = true;
smtpclient.Credentials = new NetworkCredential("youremailID@gmail.com","password");
smtpclient.DeliveryMethod = SmtpDeliveryMethod.Network;
smtpclient.Send(mail);

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!
Wednesday, December 25, 2013
Send mail using gmail
Subscribe to:
Posts (Atom)