Sending Email in C#.NET Through Gmail - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T14:48:09Zhttp://stackoverflow.com/feeds/question/32260http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail12Sending Email in C#.NET Through GmailMike Wills2008-08-28T13:28:38Z2009-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#322866Answer by Adam Haile for Sending Email in C#.NET Through GmailAdam Haile2008-08-28T13:36:35Z2008-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#3233625Answer by Domenic for Sending Email in C#.NET Through GmailDomenic2008-08-28T14:08:03Z2009-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#4895944Answer by Donny V. for Sending Email in C#.NET Through GmailDonny V.2009-01-28T22:01:50Z2009-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#6495541Answer by starseed for Sending Email in C#.NET Through Gmailstarseed2009-03-16T07:25:58Z2009-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#9998330Answer by bolton for Sending Email in C#.NET Through Gmailbolton2009-06-16T06:30:20Z2009-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-1Answer by Tiago Moraes for Sending Email in C#.NET Through GmailTiago Moraes2009-08-15T04:02:55Z2009-08-15T04:02:55Z<p>Thank You!!! Very efficient code!!!</p>