Class OutgoingServer
The outgoing server information (SMTP)
Inheritance
object
OutgoingServer
Namespace: Nettify.MailAddress.IspInfo
Assembly: Nettify.dll
Syntax
public class OutgoingServer
Properties
| Edit this page View SourceAuthenticationMethods
The authentication methods
Declaration
public string[]? AuthenticationMethods { get; set; }
Property Value
Type | Description |
---|---|
string[] |
Hostname
The hostname for the SMTP server
Declaration
public string Hostname { get; set; }
Property Value
Type | Description |
---|---|
string |
Port
The port for the SMTP server. Usually 465.
Declaration
public int Port { get; set; }
Property Value
Type | Description |
---|---|
int |
SocketType
The socket type. Usually SSL or STARTTLS
Declaration
public string SocketType { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
The server type. Usually "smtp"
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |
Username
The username indicator. Usually, it's set to %EMAILADDRESS%, which means the E-mail address placeholder.
Declaration
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string |