22 lines
305 B
C#
22 lines
305 B
C#
namespace Sockeye.Biz
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// All Sockeye smtp notification connection security
|
|
///
|
|
/// </summary>
|
|
public enum NotifyMailSecurity : int
|
|
{
|
|
|
|
None = 0,
|
|
StartTls = 1,
|
|
SSLTLS=3
|
|
|
|
//NEW ITEMS REQUIRE translation KEYS
|
|
|
|
}
|
|
|
|
|
|
}//eons
|