Class ServerSettings
Acuit Pinpoint email settings.
[DataContract]
public class ServerSettings
- Inheritance
-
ServerSettings
- Inherited Members
Constructors
ServerSettings()
public ServerSettings()
Properties
AdminEmailAddresses
Gets or sets the administrator email addresses, separated by commas. If this is not specified, email notifications to administrators will fail.
[DataMember]
public string? AdminEmailAddresses { get; set; }
Property Value
FromAddress
Gets or sets the email address to use for emails from Acuit Pinpoint Server. This is required when MailHost is specified.
[DataMember]
public string? FromAddress { get; set; }
Property Value
MailHost
Gets or sets the name or IP address of the host used for sending email via SMTP, or null or empty to disable emailed notifications.
[DataMember]
public string? MailHost { get; set; }
Property Value
MailPort
Gets or sets the port used for sending email via SMTP. This defaults to 25.
[DataMember]
public int MailPort { get; set; }