Gmail SmtpClient exampe





SmtpClient gglClient = new SmtpClient("173.194.67.108", 587);             gglClient.UseDefaultCredentials = false;             gglClient.DeliveryMethod = SmtpDeliveryMethod.Network;             gglClient.Credentials = new NetworkCredential("username@gmail.com", "password");             gglClient.EnableSsl = true;             MailMessage msg = new MailMessage("", email);             msg.Subject = "";             msg.Body = @" ";             msg.IsBodyHtml = false;             msg.BodyEncoding = UTF8Encoding.UTF8;             gglClient.Timeout = 8000;             ServicePointManager.ServerCertificateValidationCallback =                 delegate(object s, X509Certificate certificate, X509Chain chain,                     SslPolicyErrors sslPolicyErrors) { return true; };             gglClient.Send(msg);

Comments

Popular posts from this blog

OverTheWire[.com] Natas Walkthrough - JUST HINT, NO SPOILERS

SOLVED The item could not be indexed successfully because the item failed in the indexing subsystem

Asp.Net Ending Response options, Response.End() vs CompleteRequest()