EmailConnectorConfig

data class EmailConnectorConfig(val username: String, val password: String, val smtpProperties: Properties)

Configuration class for the EmailConnector.

Constructors

Link copied to clipboard
constructor(configMap: Map<*, *>)

Secondary constructor to create an instance of EmailConnectorConfig from a configuration map.

constructor(username: String, password: String, smtpProperties: Properties)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The password for the email account.

Link copied to clipboard

The SMTP properties for the email session.

Link copied to clipboard

The username for the email account.