up vote 92 down vote favorite
79
share [g+] share [fb]

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. Is it possible to do?

link|improve this question

If you're using ASP.Net Mvc I would recommend having a look at MvcMailer: github.com/smsohan/MvcMailer/wiki/MvcMailer-Step-by-Step-Guide – noocyte Oct 5 '11 at 7:42
I have a nice example of how to do this on my site jarloo.com/gmail-in-c – Kelly Oct 14 '11 at 17:27
feedback

protected by meagar Mar 22 '11 at 19:16

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

8 Answers

up vote 155 down vote accepted

Be sure to use System.Net.Mail, not the deprecated System.Web.Mail. Doing SSL with System.Web.Mail is a gross mess of hacky extensions.

using System.Net;
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);
}
link|improve this answer
When constructing the NetworkCredential, use fromAddress.Address, not .ToString() – SLaks Jun 16 '09 at 15:52
Note that this method could have the email being marked as spam, due to SPF (if it's implemented at the receiver). – Noon Silk Aug 15 '09 at 4:06
3  
You can still get user not logged in errors if Google just suddenly decides you have sent too many in the past xx number of minutes. You should always add a trySend, if it errors sleep a while, and then attempt again. – Jason Short Aug 26 '09 at 6:30
4  
Interesting note: If you swap 'UseDefaultCredentials = false,' and 'Credentials = ...' it won't authenticate. – Nathan Wheeler Nov 17 '09 at 16:56
2  
There are no problems with SPF using this method. Every email client can be configured to do exactly this. You just may get problems if you use your own server (i.e. something else than smtp.gmail.com) with something@gmail.com as sender. Btw: smtp.gmail.com automatically overwrites the sender address if it's not yours. – Meinersbur Mar 18 '10 at 18:39
show 4 more comments
feedback

http://www.systemwebmail.com/ is probably the most absurdly complete site dedicated to a single .NET namespace...but it has EVERYTHING you could ever want to know about sending mail via .NET, be it ASP.NET or Desktop.

link|improve this answer
7  
Site has been updated to www.systemnetmail.com for .NET 2.0 and above. – greg7gkb Oct 30 '08 at 20:40
feedback

The above answer doesn't work. You have to set "DeliveryMethod = SmtpDeliveryMethod.Network" or it will come back with a "client was not authenticated" error. Also it's always a good idea to put a timeout.

Revised 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);
            }
link|improve this answer
10  
Just so you know, your response is what the comment system is for. Adding another answer just adds confusion. – Richard Szalay Mar 16 '09 at 7:38
Interesting; it works on my machine (TM). But since this seems plausible, I'll add it to my answer. – Domenic Mar 16 '09 at 19:53
Hmm my guess is that SmtpDeliveryMethod.Network is the default, but maybe the default gets changed when running in IIS---was that what you were doing? – Domenic Mar 16 '09 at 19:55
I ran it from a desktop app. – Donny V. Mar 21 '09 at 2:47
feedback

I found this interesting link: http://code.msdn.microsoft.com/CSharpGmail.

link|improve this answer
1  
+1 for searching. – David Lively Mar 18 '10 at 18:31
1  
Uses deprecated System.Web.Mail instead of System.Net.Mail – sotto Feb 26 '11 at 20:26
feedback

can't add a comment so adding an answer (don't know why it wont let me add comments).

it doesn't work for me when EnableSsl=true (only when false). I think the reason is : http://www.systemnetmail.com/faq/5.3.aspx

link|improve this answer
feedback

Here is my version: "Send Email In C # Using Gmail".

link|improve this answer
While your article may in fact answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. Stack Overflow is only as useful as its questions and answers, and if your blog host goes down or your URLs get moved around, this answer becomes useless. Thanks! – sarnold Jan 16 at 6:08
feedback

Make sure you give enough of a timeout. I kept getting System.Net.Mail.SmtpException until I increased mine. It was causing the error "The operation has timed out" (from the exception message).

The above code provided works pretty good.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.