Class EmailSettingGroupViewComponent.UpdateEmailSettingsViewModel
Inheritance
EmailSettingGroupViewComponent.UpdateEmailSettingsViewModel
Assembly: Volo.Abp.SettingManagement.Web.dll
Syntax
public class EmailSettingGroupViewComponent.UpdateEmailSettingsViewModel
Constructors
UpdateEmailSettingsViewModel()
Declaration
public UpdateEmailSettingsViewModel()
Properties
DefaultFromAddress
Declaration
[MaxLength(1024)]
[Required]
[Display(Name = "DefaultFromAddress")]
public string DefaultFromAddress { get; set; }
Property Value
DefaultFromDisplayName
Declaration
[MaxLength(1024)]
[Required]
[Display(Name = "DefaultFromDisplayName")]
public string DefaultFromDisplayName { get; set; }
Property Value
SmtpDomain
Declaration
[MaxLength(1024)]
[Display(Name = "SmtpDomain")]
public string SmtpDomain { get; set; }
Property Value
SmtpEnableSsl
Declaration
[Display(Name = "SmtpEnableSsl")]
public bool SmtpEnableSsl { get; set; }
Property Value
SmtpHost
Declaration
[MaxLength(256)]
[Display(Name = "SmtpHost")]
public string SmtpHost { get; set; }
Property Value
SmtpPassword
Declaration
[MaxLength(1024)]
[DataType(DataType.Password)]
[DisableAuditing]
[Display(Name = "SmtpPassword")]
public string SmtpPassword { get; set; }
Property Value
SmtpPort
Declaration
[Range(1, 65535)]
[Display(Name = "SmtpPort")]
public int SmtpPort { get; set; }
Property Value
SmtpUseDefaultCredentials
Declaration
[Display(Name = "SmtpUseDefaultCredentials")]
public bool SmtpUseDefaultCredentials { get; set; }
Property Value
SmtpUserName
Declaration
[MaxLength(1024)]
[Display(Name = "SmtpUserName")]
public string SmtpUserName { get; set; }
Property Value
Extension Methods