MailSharp / MailSharp.Common / SecurityEnum.cs
Code · 9 lines · 208 bytes
1
2
3
4
5
6
7
8
9namespace MailSharp.Common;

public enum SecurityEnum
{
	None,
	StartTlsOptional,
	StartTls,          // StartTLS required before MAIL/AUTH/DATA
	Tls                // Implicit TLS from connection start
}