GMail + C# + Web.Config: Send Mail Works Programmatically, Throws Exception Using Web.Config Values

21,184

Solution 1

For googlers ending up here, the correct way to do this is:

<system.net>
    <mailSettings>
        <smtp deliveryMethod="Network" from="SomeWebsite Admin &lt;[email protected]&gt;">
            <network host="smtp.gmail.com" port="587" enableSsl="true" defaultCredentials="false" userName="[email protected]" password="somepassword" />
        </smtp>
    </mailSettings>
</system.net>

And your code is then:

           smtp   = new SmtpClient();
           smtp.Send( mailMessage );

Solution 2

I am not familiar with working this way but in the web.config defaultCredentials is true, you set it to false when doing it programatically is that the difference?

Solution 3

I think this part should be <smtp deliveryMethod="Network" from="SomeWebsite Admin <[email protected]>"> Like this <smtp deliveryMethod="Network" from="[email protected]">

Solution 4

this is a configuration that worked perfectly for me:

<system.net>
    <mailSettings>
      <smtp deliveryMethod="Network" from="[email protected]">
        <network defaultCredentials="false" host="smtp.gmail.com" port="587"  userName="my-username" password="my-password"/>
      </smtp>
    </mailSettings>
  </system.net>

there is no way to add the SSL parameter to the network tag. You will have to set it from code:

var smtpClient = new SmtpClient();
smtpClient.EnableSsl = true;
smtpClient.Send(message);

If you don't want to send the emails out using an external smtp, you can configure it to use the localhost and use a desktop email receiver like PaperCut (http://papercut.codeplex.com/). This is the config to achieve that:

<system.net>
    <mailSettings>
      <smtp>
        <network host="127.0.0.1" port="25" />
      </smtp>
    </mailSettings>
  </system.net>

Hope this helps!

Solution 5

There is no way to specify whether a SSL / Secure connection should be used when defining the mail settings in the web config file.

I'm pretty sure that's why you get an error.

One way to solve that is to create your own mail sending wrapper, and then using it in your application, but you probably already got that :)

It gets more complicated when using the .net membership controls, like forgot password, create user etc. A way to solve that, is to override the SendingMail event, and then set the EnableSSL property of the mailclient to true.

I hope i was able to help :)

Share:
21,184
Bob Kaufman
Author by

Bob Kaufman

ASP.NET and C# developer in Salt Lake City.

Updated on November 09, 2020

Comments

  • Bob Kaufman
    Bob Kaufman over 3 years

    Given the following section in Web.Config:

    <system.net>
        <mailSettings>
            <smtp deliveryMethod="Network" from="SomeWebsite Admin &lt;[email protected]&gt;">
                <network host="smtp.gmail.com" port="587" defaultCredentials="true" userName="[email protected]" password="somepassword" />
            </smtp>
        </mailSettings>
    </system.net>
    

    And the following code snippet:

                    smtp   = new SmtpClient();
    
                    smtp.Host = "smtp.gmail.com";
                    smtp.Port = 587;
                    smtp.EnableSsl = true;
                    smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
                    smtp.UseDefaultCredentials = false;
                    smtp.Credentials = new NetworkCredential( "[email protected]", "somepassword" );
    
                    smtp.Send( mailMessage );
    

    The above works fine, however commenting out the programmatic overrides, like this:

                    smtp   = new SmtpClient();
    
                    //smtp.Host = "smtp.gmail.com";
                    //smtp.Port = 587;
                    smtp.EnableSsl = true;
                    //smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
                    //smtp.UseDefaultCredentials = false;
                    //smtp.Credentials = new NetworkCredential( "[email protected]", "somepassword" );
    
                    smtp.Send( mailMessage );
    

    fails with:

    System.Net.Mail.SmtpException: {"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                              "}
    

    Yes, the blank space after the "learn more at" is really there, and it makes things extra fun. Thing is, I can't be hardcoding these values, as they change from development to internal staging to live. So I'm wondering why it appears to fail to work with the Web.Config defaults. I'm figuring I'm missing one critical something-or-other?

    * EDIT *

    Here's some more information, looking at the values of my smtp object (without programmatic overrides except EnableSSL = true):

    Host = smtp.gmail.com (makes sense -- proves I'm actually editing the right Web.Config...
    DeliveryMethod = Network
    Port = 587
    Credentials.UserName = <blank> (Problem???)
    Credentials.Password = <blank> (Problem???)
    Credentials.Domain = <blank>
    

    * EDIT of the EDIT *

    The missing Username and Password values, and the accepted response, below, clued me in to the problem: defaultCredentials in Web.Config must be false.