Smtp Args
data class SmtpArgs(val enabled: Output<Boolean>? = null, val fromAddress: Output<String>? = null, val fromName: Output<String>? = null, val host: Output<String>? = null, val password: Output<String>? = null, val skipVerify: Output<Boolean>? = null, val startTLSPolicy: Output<Either<String, StartTLSPolicy>>? = null, val user: Output<String>? = null) : ConvertibleToJava<SmtpArgs>
Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
Constructors
Link copied to clipboard
constructor(enabled: Output<Boolean>? = null, fromAddress: Output<String>? = null, fromName: Output<String>? = null, host: Output<String>? = null, password: Output<String>? = null, skipVerify: Output<Boolean>? = null, startTLSPolicy: Output<Either<String, StartTLSPolicy>>? = null, user: Output<String>? = null)
Properties
Link copied to clipboard
Address used when sending out emails https://pkg.go.dev/net/mail#Address
Link copied to clipboard
Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
Link copied to clipboard
The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy