This topic has not yet been rated - Rate this topic

SmtpClient.UseDefaultCredentials Property

Gets or sets a Boolean value that controls whether the DefaultCredentials are sent with requests.

Namespace:  System.Net.Mail
Assembly:  System (in System.dll)
public bool UseDefaultCredentials { get; set; }

Property Value

Type: System.Boolean
true if the default credentials are used; otherwise false. The default value is false.
Exception Condition
InvalidOperationException

You cannot change the value of this property when an e-mail is being sent.

Some SMTP servers require that the client be authenticated before the server sends e-mail on its behalf. Set this property to true when this SmtpClient object should, if requested by the server, authenticate using the default credentials of the currently logged on user. For client applications, this is the desired behavior in most scenarios.

Credentials information can also be specified using the application and machine configuration files. For more information, see <mailSettings> Element (Network Settings).

If the UseDefaultCredentials property is set to false, then the value set in the Credentials property will be used for the credentials when connecting to the server. If the UseDefaultCredentials property is set to false and the Credentials property has not been set, then mail is sent to the server anonymously.

Caution note Caution

If you provide credentials for basic authentication, they are sent to the server in clear text. This can present a security issue because your credentials can be seen, and then used by others.

The following code example demonstrates using this property.


		public static void CreateTestMessage2(string server)
		{
			string to = "jane@contoso.com";
			string from = "ben@contoso.com";
			MailMessage message = new MailMessage(from, to);
			message.Subject = "Using the new SMTP client.";
			message.Body = @"Using this new feature, you can send an e-mail message from an application very easily.";
			SmtpClient client = new SmtpClient(server);
			// Credentials are necessary if the server requires the client 
			// to authenticate before it will send e-mail on the client's behalf.
			client.UseDefaultCredentials = true;

      try {
			  client.Send(message);
			}  
			catch (Exception ex) {
			  Console.WriteLine("Exception caught in CreateTestMessage2(): {0}", 
                    ex.ToString() );			  
      }              
		}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Just set UseDefaultCredentials property before set Credentials is not enough

Just set UseDefaultCredentials property before set Credentials is not enough.
If someone need to use default credentials, it still not work.
Below is the reason:
From the inner code of set UseDefaultCredentials property of SMTPClient

public void set_UseDefaultCredentials(bool value)
{
if (this.InCall)
{
throw new InvalidOperationException(SR.GetString("SmtpInvalidOperationDuringSend"));
}
this.transport.Credentials = value ? CredentialCache.DefaultNetworkCredentials : null;
}

We see the UseDefaultCredentials property is not a indicator of whether use default credentials, but just set the value of Credentials that will be used.
So even someone set UseDefaultCredentials = True, once he set Crendentials after that, default credentials still not actually being used.
The following code snippet might solve the problem:

if (booUseDefaultCredentials)
SMTPClient.UseDefaultCredentials=True;
else
SMTPClient.Credentials = new System.Net.NetworkCredential("yourusername", "yourpassword");

 

MUST set UseDefaultCredentials BEFORE set Credentials.
$0If you set UseDefaultCredentials after Credentials the SmtpClient dont send "AUTH login" command to SMTP server.$0 $0$0 $0 $0This works:$0 $0SmtpClient smtpCli = new SmtpClient(srvAddr);$0 $0smtpCli.UseDefaultCredentials = false;$0 $0smtpCli.Credentials = new NetworkCredential(usr, pwd);$0 $0$0 $0 $0This not:$0 $0SmtpClient smtpCli = new SmtpClient(srvAddr);$0 $0smtpCli.Credentials = new NetworkCredential(usr, pwd);$0 $0smtpCli.UseDefaultCredentials = false;$0 $0$0 $0 $0I saw the System.Net.Sokc log in the two cases and really work in that mode.$0 $0Thanks to Sir Psycho for his post on Internet.$0