RealmSmtpServerArgs

data class RealmSmtpServerArgs(val auth: Output<RealmSmtpServerAuthArgs>? = null, val envelopeFrom: Output<String>? = null, val from: Output<String>, val fromDisplayName: Output<String>? = null, val host: Output<String>, val port: Output<String>? = null, val replyTo: Output<String>? = null, val replyToDisplayName: Output<String>? = null, val ssl: Output<Boolean>? = null, val starttls: Output<Boolean>? = null) : ConvertibleToJava<RealmSmtpServerArgs>

Constructors

Link copied to clipboard
constructor(auth: Output<RealmSmtpServerAuthArgs>? = null, envelopeFrom: Output<String>? = null, from: Output<String>, fromDisplayName: Output<String>? = null, host: Output<String>, port: Output<String>? = null, replyTo: Output<String>? = null, replyToDisplayName: Output<String>? = null, ssl: Output<Boolean>? = null, starttls: Output<Boolean>? = null)

Properties

Link copied to clipboard
val auth: Output<RealmSmtpServerAuthArgs>? = null

Enables authentication to the SMTP server. This block supports the following arguments:

Link copied to clipboard
val envelopeFrom: Output<String>? = null

The email address uses for bounces.

Link copied to clipboard
val from: Output<String>

The email address for the sender.

Link copied to clipboard
val fromDisplayName: Output<String>? = null

The display name of the sender email address.

Link copied to clipboard
val host: Output<String>

The host of the SMTP server.

Link copied to clipboard
val port: Output<String>? = null

The port of the SMTP server (defaults to 25).

Link copied to clipboard
val replyTo: Output<String>? = null

The "reply to" email address.

Link copied to clipboard
val replyToDisplayName: Output<String>? = null

The display name of the "reply to" email address.

Link copied to clipboard
val ssl: Output<Boolean>? = null

When true, enables SSL. Defaults to false.

Link copied to clipboard
val starttls: Output<Boolean>? = null

When true, enables StartTLS. Defaults to false.

Functions

Link copied to clipboard
open override fun toJava(): RealmSmtpServerArgs