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?
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.
|
Be sure to use
| |||||||||||||||||
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. | |||||
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:
| |||||||||||
feedback
|
|
I found this interesting link: http://code.msdn.microsoft.com/CSharpGmail. | |||||||||
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 | |||
|
feedback
|
|
Here is my version: "Send Email In C # Using Gmail". | ||||
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. | |||
|
feedback
|