using System; using System.Collections.Generic; using System.Text; namespace WMS.Web.Domain.Options { /// /// 邮箱 /// public class EmailOptions { /// /// SMTP 服务器地址 /// public string SmtpServer { get; set; } /// /// SMTP 服务器端口号 /// public int SmtpPort { get; set; } /// /// 名称 /// public string SenderName { get; set; } /// /// 主题 /// public string SendTitle { get; set; } /// /// 发件人邮箱地址 /// public string SenderEmail { get; set; } /// /// 发件人邮箱密码 /// public string SenderEmailPwd { get; set; } } }