Class MessagingConfig.SMTPConfig.Mailer
SMTP server configuration.
Inherited Members
Namespace: Quantellia.WMServer.Messaging
Assembly: WMServer.dll
Syntax
public class MessagingConfig.SMTPConfig.Mailer
Properties
From
Default address to email under.
Declaration
public string From { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Password
Password for accessing SMTP server.
Declaration
public string Password { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Port
Port number for the server. 25 by default.
Declaration
public int Port { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Principals
Principals allowed to access this emailer. Can be a user, or an organization who provides (organization-email) permissions
Declaration
public List<string> Principals { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |
Security
Security mode.
Declaration
public MessagingConfig.SMTPConfig.Mailer.SecurityMode Security { get; set; }
Property Value
| Type | Description |
|---|---|
| MessagingConfig.SMTPConfig.Mailer.SecurityMode |
Server
DNS or IP address of SMTP server.
Declaration
public string Server { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
User
User name for accessing SMTP server.
Declaration
public string User { get; set; }
Property Value
| Type | Description |
|---|---|
| string |