vote up 5 vote down star
3

For some reason the accepted answer or any others don't work for me for this question.

can anyone else get this to work?

UPDATE: i have tried all the answers (accepted and otherwise) in the other question, but neither work.

I would just like to know if it works for anyone else, otherwise google have changed something (which has happened before).

When I try the piece of code that uses SmtpDeliveryMethod.Network, I quickly receive a SmtpException on Send(message). The message is "The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required. Learn more at" <-- seriously, it ends there.

flag

78% accept rate
I tried to do this using similar methods in a different language. Encountered the same type of thing: Old documented methods that worked before, did not work for me. So you are left wondering if google changed something, or if you did something wrong. – aaronls Apr 1 at 8:49
@aaronls the only recent change seems to be related to the 465 port. I tried it while looking for a solution (I was just working on the same), and the 465 port timeouts all the time. If that's your case, try with the 587 port. – Freddy Rios Apr 2 at 0:46
This problem is due to "word verification" (captcha). If you sign in via web interface by hand and fill in captcha your SMTP will start working. – Robert Koritnik Oct 21 at 16:45

6 Answers

vote up 10 vote down check

CVertex, make sure to review your code, and if that doesn't reveal anything post it. I was just enabling this on a test asp.net site I was working on, and it works.

Actually, at some point I had an issue on my code. Didn't spot it until I had a simpler version on a console program and saw it was working (no change on gmail side as you were worried about). The below code works just like the samples you referred to:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Mail;
using System.Net;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            var client = new SmtpClient("smtp.gmail.com", 587)
            {
                Credentials = new NetworkCredential("myusername@gmail.com", "mypwd"),
                EnableSsl = true
            };
            client.Send("myusername@gmail.com", "myusername@gmail.com", "test", "testbody");
            Console.WriteLine("Sent");
            Console.ReadLine();
        }
    }
}

I also got it working using a combination of web.config http://msdn.microsoft.com/en-us/library/w355a94k.aspx and code (because there is no matching EnableSsl in the config :().

link|flag
Worked brilliantly for me in a C# winforms application. Thanks, Freddy. – Andrew Jun 15 at 13:21
vote up 0 vote down

Another thing that i've found is that you must change your password at least once. and try to use a Secure level Password (do not use the same user as password or 123456, etc)

link|flag
vote up 0 vote down

The problem is not one of technical ability to send through gmail. That works for most situations. If you can't get a machine to send, it is usually due to the machine not having been authenticated with a human at the controls at least once.

The problem that most users face is that Google decides to change the outbound limits all the time. You should always add defensive code to your solution. If you start seeing errors, step off your send speed and just stop sending for a while. If you keep trying to send Google will sometimes add extra time to your delay period before you can send again.

What I have done in my current system is to send with a 1.5 second delay between each message. Then if I get any errors, stop for 5 minutes and then start again. This usually works and will allow you to send up to the limits of the account (last I checked it was 2,000 for premier customer logins per day).

link|flag
vote up 1 vote down

Refer link below

send email using gmail in asp.net

link|flag
vote up 0 vote down

What about the non-accepted answer, have you tried that?

link|flag
vote up 1 vote down

The answer will probably be correct and your code not ;) (else why would somebody accept it)

So what is not working? error etc

link|flag
Well, have you considered the question being old? It's possible. Can you tell me definitely if that code works NOW? If you can I'll accept your answer – CVertex Apr 1 at 12:07
It can be old and that gmail changes his settings. Yes that can be true but the lack of error messages I couldn't give any better answer. I saw the comment of freddy and this could be a solution! – PoweRoy Apr 2 at 7:08

Your Answer

Get an OpenID
or

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