Hi,
I understand that when SSL is enable, SecurityOptions should be either Auto / Implicit.
But when not SSL, what would the code combination be ?
Is this correct ?
if (EnableSSL)
{
if (EnableStartTLS)
mSmtpClient.SecurityOptions = SecurityOptions.SSLExplicit;
else
mSmtpClient.SecurityOptions = SecurityOptions.SSLImplicit;
}
else
{
mSmtpClient.SecurityOptions = SecurityOptions.None;
}
Hi,
Hi,
What about the SSL / TLS option?
Does my code work according to Aspose.Email concept ?
Hi,