- namespace Long.Utils.Mail;
- /// <summary>
- /// 电子邮件配置类
- /// </summary>
- public class EMailOption
- {
- public string Server { get; set; } = string.Empty;
- public int Port { get; set; }
- public string From { get; set; } = string.Empty;
- public string UserName { get; set; } = string.Empty;
- public string Password { get; set; } = string.Empty;
- }
|