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 | ||
| encryption | enum | SMTP encryption methods |
SMTP encryption methods | ||
| requiresAuthentication | boolean | Indicates whether the SMTP server requires authentication |
Indicates whether the SMTP server requires authentication | ||
| username | string | SMTP username (required if RequiresAuthentication = true) |
SMTP username (required if RequiresAuthentication = true) | ||
| password | string | SMTP password (required if RequiresAuthentication = true) |
SMTP password (required if RequiresAuthentication = true) | ||
| timeout | integer | Connection timeout in milliseconds |
Connection timeout in milliseconds | ||
JSON Example
{
"host": "string",
"port": 0,
"encryption": "Auto",
"requiresAuthentication": false,
"username": "string"
}