vote up 0 vote down star
2

I've been trying for a whlie on this, and have so far been failing miserably. My most recent attempt was lifted from this stack code here: http://stackoverflow.com/questions/704636/sending-email-through-gmail-smtp-server-with-c, but I've tried all the syntax I could find here on stack and elsewhere. My code currently is:

var client = new SmtpClient("smtp.gmail.com", 587)
{
    Credentials = new NetworkCredential("me@gmail.com", "mypass"),
    EnableSsl = true
};

client.Send("me@gmail.com","me@gmail.com","Test", "test message");

Running that code gives me an immediate exception "Failure sending mail" that has an innerexeption "unable to connect to the remote server".

If I change the port to 465 (as gmail docs suggest), I get a timeout every time.

I've read that 465 isn't a good port to use, so I'm wondering what the deal is w/ 587 giving me failure to connect. My user and pass are right. I've read that I have to have POP service setup on my gmail account, so I did that. No avail.

I was originally trying to get this working for my branded GMail account, but after running into the same problems w/ that I thought going w/ my regular gmail account would be easier... so far that's not the case.

Thanks for the help. Paul

flag

Can you connect through a standard email client? If not, it might be a problem with you firewall. Did you enable POP access in your account? – MiffTheFox Jul 4 at 13:42
Yes, i can, and yes I did. – Paul Jul 6 at 2:26

4 Answers

vote up 2 vote down check

I tried your code, and it works prefectly with port 587, but not with 465.

Have you checked the fire wall? Try from the command line "Telnet smtp.gmail.com 587" If you get "220 mx.google.com ESMTP...." back, then the port is open. If not, it is something that blocks you call.

Daniel

link|flag
thanks, that was exactly it. I had put the rule in my firewall to let port 587 through, and my email client had no problem using it, but my a/v was suspicious of my console test app, thinking it was a worm trying to propogate. – Paul Jul 6 at 2:55
vote up 0 vote down

I implemented an email client sometime back that could talk to gmail on both 587 and 465...

Port 25 is the normal unencrypted pop port; not available on gmail.

The other two ports have encryption; 587 uses TLS, 465 uses SSL.

To use 587 you should set SmtpClient.EnableSsl = true.

465 wont work with SmtpClient, it will work with the deprecated class SmtpMail instead.

link|flag
as mentioned, I already had EnableSsl = true, see my code. – Paul Jul 6 at 2:54
vote up 0 vote down

Hi i have the same problem as Paul. when i tried connecting by telnet on 587 it says it does is unable to connect. What must i change in my firewall settings to get it to connect...

please help

link|flag
vote up -1 vote down

if you are using port 587 you must enable IMAP settings from gmail account.

link|flag

Your Answer

Get an OpenID
or

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