API Docs / Schemas / SmtpSettingsRequest

SmtpSettingsRequest

SMTP settings for API requests

Properties

Name Type Description
host*string

SMTP server host

SMTP server host

port*integer

SMTP server port

SMTP server port

encryptionenum

SMTP encryption methods

Auto Ssl Tls

SMTP encryption methods

Auto Ssl Tls

requiresAuthenticationboolean

Indicates whether the SMTP server requires authentication
If false, the connection will be made without authentication (open relay)

Indicates whether the SMTP server requires authentication
If false, the connection will be made without authentication (open relay)

usernamestring

SMTP username (required if RequiresAuthentication = true)

SMTP username (required if RequiresAuthentication = true)

passwordstring

SMTP password (required if RequiresAuthentication = true)

SMTP password (required if RequiresAuthentication = true)

timeoutinteger

Connection timeout in milliseconds

Connection timeout in milliseconds

JSON Example

{
  "host": "string",
  "port": 0,
  "encryption": "Auto",
  "requiresAuthentication": false,
  "username": "string"
}

Contained in Schemas