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