namespace Admin.NET.Core;
///
/// 邮件配置选项
///
public sealed class EmailOptions : IConfigurableOptions
{
///
/// 主机
///
public string Host { get; set; }
///
/// 端口
///
public int Port { get; set; }
///
/// 默认发件者邮箱
///
public string DefaultFromEmail { get; set; }
///
/// 默认接收人邮箱
///
public string DefaultToEmail { get; set; }
///
/// 启用SSL
///
public bool EnableSsl { get; set; }
///
/// 是否使用默认凭据
///
public bool UseDefaultCredentials { get; set; }
///
/// 邮箱账号
///
public string UserName { get; set; }
///
/// 邮箱密码
///
public string Password { get; set; }
///
/// 默认邮件标题
///
public string DefaultFromName { get; set; }
}