using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace MadRunFabric.Common { public class MailConfig { /// /// 发件人名称(显示在发件邮箱的已发邮件中的发件人名称) /// public string Name { get; set; } /// /// 发件人邮箱地址 /// public string Address { get; set; } /// /// 发件人邮箱密码 /// public string Password { get; set; } /// /// 发件人邮箱SMTP服务器地址 /// public string SMPTHost { get; set; } /// /// 端口 /// public int Port { get; set; } public string IMAPAddress { get; set; } public string IMAPPassword { get; set; } /// /// /// public string IMAPHost { get; set; } public int IMAPPort { get; set; } } }