Connecting to SMTP Server
The following properties need to be set when connecting with an SMTP server with SSL support.
- SecurityOptions
- Port
In the examples below we show how to:
- Set a username.
- Set a password.
- Set the port.
- Set security option.
The following code snippet shows you how to connect SSL enabled SMTP server.
Connecting to Server via Socks Proxy Sever
Sometimes we use proxy servers for communicating with the outside world. In such cases, mail clients are not able to communicate over the Internet without specifying the proxy address. Aspose.Email provides support for versions 4, 4a and 5 of SOCKS proxy protocol. This article provides a working sample of sending email using a proxy mail server. To send an email via a proxy server:
- Initialize Proxy with the required information, that is proxy address, port, and SOCKS version.
- Initialize SmtpClient with the host address, user name and password, and any other settings.
- Set the client’s Proxy property to the Proxy object created earlier.
The following code snippet shows you how to connect to a server via proxy server.
Connecting to Server via HTTP Proxy Server
Loading SMTP Authentication Information from CONFIG File
The SmtpClient class allows applications to read authentication information like username and password and the host address and port number directly from a configuration file. Using the .NET native configuration tag, as shown below, enables the SmtpClient class to read this information through the Configuration Manager also available in .NET framework. For Aspose.Email to be able to read a configuration file, it needs to be in the correct format. Below, we show an example XML configuration file followed by the code that reads it. The following code snippet shows you how to load SMTP authentication information from CONFIG File.
Once the configuration settings are defined, load these settings directly into an instance of the SmtpClient class using one of its overloaded constructors. The following code snippet demonstrates reading configuration settings from the configuration file and loading them directly into the instance of the SmtpClient.
Bind SMTP Client to Specific IP Address on Host
The possibility of a host having multiple ports available for sending out emails cannot be ruled out. In such cases, the requirement may arise to bind the email sending client to a specific port on the host for sending out emails. This can be achieved with Aspose.Email API as well using the SmtpClient BindIPEndPoint property. The API’s SmtpClient can be set to use a specific IP address on the host by specifying the specific IP Endpoint. The following code snippet shows you how to bind SMTP Client to Specific IP Address on Host.
How to Set Timeout for Mail Operations
Each mail operation takes some time depending on many factors (network delays, data size, server performance, etc.). You can set a timeout for all mail operations. The code example below shows you how to do that using the Timeout property. Note: you should not set large values to avoid long waits in your application.
using (SmtpClient smtpClient = new SmtpClient("host", 587, "username", "password", SecurityOptions.SSLExplicit))
{
smtpClient.Timeout = 60000; // 60 seconds
// some code...
}
Using Cryptographic Protocols with SMTP Client
Aspose.Email supports SSL (obsolete) and TLS cryptographic protocols to provide communications security. You can enable cryptographic encryption to protect data exchange between your application and mail servers.
NOTE: You should set only those versions of the protocol, which are supported by .NET Framework. If some versions of the cryptographic protocol are not supported by your current version of .NET Framework, they will be ignored and skipped. In this case, exceptions won’t be generated. Please use SetSupportedEncryptionUnsafe method if you want to set the protocols without any compatibility checks.
The code example below shows you how to set TLS 1.3 for SmtpClient class instance.
using (SmtpClient smtpClient = new SmtpClient("host", 587, "username", "password", SecurityOptions.SSLExplicit))
{
smtpClient.SupportedEncryption = EncryptionProtocols.Tls13;
// some code...
}
In case of a specified encryption protocol is not supported in the current version of .NET Framework, the difference in behavior between SetSupportedEncryptionUnsafe method and SupportedEncryption property is the following:
- If SupportedEncryption property is used, the email client downgrades the encryption protocol to a supported level.
- If SetSupportedEncryptionUnsafe method is used, the email client throws exceptions.