vote up 1 vote down star

I can get both System.Net.Mail and System.Web.Mail to work with GMail, but I can't get them both to work with smtp.att.yahoo.com.

I get the SMTP settings from my own Web.config keys. These settings work when I send using System.Web.Mail, but fail with System.Net.Mail.

	<add key="SmtpServer" value="smtp.att.yahoo.com"/>
	<add key="SmtpServerAuthenticateUser" value="ctrager@sbcglobal.net"/>
	<add key="SmtpServerPort" value="465"/>
	<add key="SmtpUseSSL" value="1"/>
	<add key="SmtpServerAuthenticatePassword" value="MY PASSWORD"/>

Here is the code that grabs my settings, and works with GMail, fails with att.yahoo:

        SmtpClient smtp;

        if (!string.IsNullOrEmpty(Util.get_setting("SmtpServer", "")))
        {
           smtp = new SmtpClient(Util.get_setting("SmtpServer", ""));
        }
        else
        {
           smtp = new SmtpClient();
        }


        if (!string.IsNullOrEmpty(Util.get_setting("SmtpServerAuthenticatePassword", "")))
           smtp.Credentials = new System.Net.NetworkCredential(
               Util.get_setting("SmtpServerAuthenticateUser", ""), 
               Util.get_setting("SmtpServerAuthenticatePassword", ""));

        if (!string.IsNullOrEmpty(Util.get_setting("SmtpServerPort", "")))
           smtp.Port = int.Parse(Util.get_setting("SmtpServerPort", ""));

        if (Util.get_setting("SmtpUseSSL", "0") == "1")
           smtp.EnableSsl = true;

        smtp.Send(message);

Is this my problem?

http://blogs.msdn.com/webdav_101/archive/2008/06/02/system-net-mail-with-ssl-to-authenticate-against-port-465.aspx

flag

78% accept rate
Did you try using port 25? – gimel Oct 5 '08 at 18:45

3 Answers

vote up 3 vote down check

I've learned the answer. The answer is:

Because System.Net.Mail does not support "implicit" SSL, only "explicit" SSL.

link|flag
vote up 0 vote down

It looks like System.Web.Mail is an older, deprecated, mail library. See systemnetmail for details. Use it only if you must still use .Net 1.1 .

link|flag
vote up -1 vote down

if it works with one and not the other, it's possible your settings aren't correct? you're using yahoo, but your user account is @sbcglobal.net...

link|flag
sbc partnered with yahoo, and then att absorbed sbc. – Corey Trager Oct 5 '08 at 16:21
These setting DO work with System.Web.Mail. – Corey Trager Oct 5 '08 at 16:23

Your Answer

Get an OpenID
or

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