Sending Email in C#.NET Through Gmail - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T14:48:09Z http://stackoverflow.com/feeds/question/32260 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail 12 Sending Email in C#.NET Through Gmail Mike Wills 2008-08-28T13:28:38Z 2009-08-15T04:02:55Z <p>Instead of relying on my host to send email, I was thinking of sending the messages though my gmail account. The emails are personalized emails to the bands I play on my show. Has anyone had success doing this?</p> http://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail/32286#32286 6 Answer by Adam Haile for Sending Email in C#.NET Through Gmail Adam Haile 2008-08-28T13:36:35Z 2008-08-28T13:36:35Z <p><a href="http://www.systemwebmail.com/" rel="nofollow">http://www.systemwebmail.com/</a> is probably the most absurdly complete site dedicated to a <em>single</em> .NET namespace...but it has EVERYTHING you could ever want to know about sending mail via .NET, be it ASP.NET or Desktop.</p> http://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail/32336#32336 25 Answer by Domenic for Sending Email in C#.NET Through Gmail Domenic 2008-08-28T14:08:03Z 2009-06-21T10:27:25Z <p>Be sure to use <code>System.Net.Mail</code>, not the deprecated <code>System.Web.Mail</code>. Doing SSL with <code>System.Web.Mail</code> is a gross mess of hacky extensions.</p> <pre><code>using System.Net.Mail; var fromAddress = new MailAddress("from@gmail.com", "From Name"); var toAddress = new MailAddress("to@example.com", "To Name"); const string fromPassword = "fromPassword"; const string subject = "Subject"; const string body = "Body"; var smtp = new SmtpClient { Host = "smtp.gmail.com", Port = 587, EnableSsl = true, DeliveryMethod = SmtpDeliveryMethod.Network, UseDefaultCredentials = false, Credentials = new NetworkCredential(fromAddress.Address, fromPassword) }; using (var message = new MailMessage(fromAddress, toAddress) { Subject = subject, Body = body }) { smtp.Send(message); } </code></pre> http://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail/489594#489594 4 Answer by Donny V. for Sending Email in C#.NET Through Gmail Donny V. 2009-01-28T22:01:50Z 2009-02-03T22:04:06Z <p>The above answer doesn't work. You have to set "DeliveryMethod = SmtpDeliveryMethod.Network" or it will come back with a "<strong>client was not authenticated</strong>" error. Also it's always a good idea to put a timeout.</p> <p>Revised code:</p> <pre><code>using System.Net.Mail; using System.Net; var fromAddress = new MailAddress("from@gmail.com", "From Name"); var toAddress = new MailAddress("to@yahoo.com", "To Name"); const string fromPassword = "password"; const string subject = "test"; const string body = "Hey now!!"; var smtp = new SmtpClient { Host = "smtp.gmail.com", Port = 587, EnableSsl = true, DeliveryMethod = SmtpDeliveryMethod.Network, Credentials = new NetworkCredential(fromAddress.Address, fromPassword), Timeout = 20000 }; using (var message = new MailMessage(fromAddress, toAddress) { Subject = subject, Body = body }) { smtp.Send(message); } </code></pre> http://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail/649554#649554 1 Answer by starseed for Sending Email in C#.NET Through Gmail starseed 2009-03-16T07:25:58Z 2009-03-16T07:25:58Z <p><a href="http://code.msdn.microsoft.com/CSharpGmail" rel="nofollow">http://code.msdn.microsoft.com/CSharpGmail</a></p> http://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail/999833#999833 0 Answer by bolton for Sending Email in C#.NET Through Gmail bolton 2009-06-16T06:30:20Z 2009-06-16T08:01:01Z <pre><code>SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com"); mail.From = new MailAddress("your_email_address@gmail.com"); mail.To.Add("to_address@mfc.ae"); mail.Subject = "Test Mail"; mail.Body = "This is for testing SMTP mail from GMAIL"; SmtpServer.Port = 587; SmtpServer.Credentials = new System.Net.NetworkCredential("username", "password"); SmtpServer.EnableSsl = true; </code></pre> <p><a href="http://csharp.net-informations.com/communications/csharp-smtp-mail.htm" rel="nofollow">http://csharp.net-informations.com/communications/csharp-smtp-mail.htm</a></p> <p>bolton.</p> http://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail/1281117#1281117 -1 Answer by Tiago Moraes for Sending Email in C#.NET Through Gmail Tiago Moraes 2009-08-15T04:02:55Z 2009-08-15T04:02:55Z <p>Thank You!!! Very efficient code!!!</p>