new $k.SmtpConnection()
Methods
authenticate(username, password)
Set the username and password
Name | Type | Description |
---|---|---|
username | string | |
password | string |
- Since
- 4.0.3
authenticateFromEncrypedAccount(encryptedAccount)
Set the username and password from a volume encrypted authenication string
Name | Type | Description |
---|---|---|
encryptedAccount | string | Encrypted account (Base64 encoded string generated in the Admin-Tool) |
- Since
- 5.2.1
send(message, asyncopt)
Sends the mail message.
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
message | $k. | The mail message to send. | ||
async | boolean | <optional> | true | True if the mail should be sent asynchronously, false if send() should block until the mail has been sent. |
- Since
- 5.5.1
setDefaultConfiguration()
Set configuration values from the SMTP settings of the Knowledge Graph.
- Since
- 5.5.1
setHost(host, portopt)
Set the hostname and port of the SMTP server.
Name | Type | Attributes | Description |
---|---|---|---|
host | string | ||
port | number | <optional> |
- Since
- 5.5.1
setRetries(retries)
Set the number of retries when trying to contact the SMTP server.
Name | Type | Description |
---|---|---|
retries | number | Number of retries |
- Since
- 5.5.1
setRetryDelay(retryDelay)
Set the delay between trying to contact the SMTP server. Only used when retries is a non-zero value.
Name | Type | Description |
---|---|---|
retryDelay | number | Delay in seconds |
- Since
- 5.5.1
setTimeout(timeoutopt)
Set the timeout in milliseconds for connection to wait for reponses
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
timeout | number | <optional> | 20000 | Number of milliseconds to wait for reponses |
- Since
- 4.2.0
setUserName(username)
Set the name of the user account. The password must be configured in the SMTP settings of the Knowledge Graph.
Name | Type | Description |
---|---|---|
username | string |
- Since
- 5.5.1
useSMTPS()
Use SMTPS for connecting to the SMTP server.
- Since
- 5.5.1
useStartTLS()
Use STARTTLS for connecting to the SMTP server.
- Since
- 5.5.1
useUnsecureConnection()
- Since
- 5.5.1
- Deprecated
- Do not use anymore.