Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Domain.Shared/Enums/SmtpSecureSocketPreset.cs 239 Bytes
a1a0369d   李曜臣   5-25代码优化
1
2
3
4
5
6
7
8
9
10
11
  namespace Yi.Framework.Rbac.Domain.Shared.Enums;
  
  /// <summary>
  /// Preset for MailKit secure socket negotiation when sending mail.
  /// </summary>
  public enum SmtpSecureSocketPreset
  {
      StartTls = 0,
      SslOnConnect = 1,
      Auto = 2
  }