4 out of 15 rated this helpful - Rate this topic

SmtpClient.Credentials Property

Gets or sets the credentials used to authenticate the sender.

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

Property Value

Type: System.Net.ICredentialsByHost
An ICredentialsByHost that represents the credentials to use for authentication; or null if no credentials have been specified.
Exception Condition
InvalidOperationException

You cannot change the value of this property when an email is being sent.

Some SMTP servers require that the client be authenticated before the server will send e-mail on its behalf. To use your default network credentials, you can set the UseDefaultCredentials to true instead of setting this property. 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.

Credentials information can also be specified using the application and machine configuration files. For more information, see <mailSettings> Element (Network Settings). If information is specified using the Credentials property, this information overrides the configuration file settings.

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 setting the credentials used to send an e-mail.


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

      try {
			  client.Send(message);
      }
			catch (Exception ex) {
			  Console.WriteLine("Exception caught in CreateTestMessage1(): {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
Mailbox unavailable. The server response was: 5.7.1 Unable to relay

How do you send an email to an external address on the client's behalf via the authenticated user?
Is it possilble to use System.Security.Principal.WindowsIdentity.GetCurrent() as the smtpClient.Credentials?

Or is there no other way but to use a username and password?

 

Do not want to use default credentials?
Try this:

SmtpClient sc = new SmtpClient("YourMailRelayServer");

sc.Credentials = new System.Net.NetworkCredential("yourusername", "yourpassword");
Working
Its working fine, with Windows Authentication. If anybody want to Build E-mail system based on windows authentication, I suggest to use this process. $0Developing to send email using alias name, like if original email id: 123@ABC.com but at sender it should show 789@XYZ.com.$0 $0$0 $0 $0I'm glad if i could receive the update.$0
MUST set UseDefaultCredentials BEFORE set Credentials.
If you set UseDefaultCredentials after Credentials the SmtpClient dont send "AUTH login" command to SMTP server. $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.Sokets log in the two cases and really work in that mode.$0 $0Thanks to Sir Psycho for his post on Internet.$0 $0$0 $0