Skip to main content
Skip table of contents

setSmtpConfiguration

You are looking at an older version of the documentation. The latest version is found here.

This procedure sets the SMTP configuration required by the sendMail procedure.

Please note that omitting parameters or specifying a null value/empty string for them will not change the value in the SMTP configuration. All parameters may be omitted or set to null.

Usage

SQL
CALL "UTILS.setSmtpConfiguration"(
    "hostname" => 'string_hostname',
    "port" => integer_port,
    "ssl" => boolean_ssl,
	"starttls" => boolean_tls,
    "username" => 'string_username',
    "password" => 'string_password',
	"fromAddr" => 'string_fromAddr'
)

Parameters

ParameterDescription
hostnameNew SMTP server hostname
portNew SMTP server port
sslNew SSL setting
starttlsNew TLS setting
usernameNew SMTP server username
passwordNew SMTP server unencrypted password. To set an encrypted password, importSmtpConfiguration may be used
fromAddrNew email address to be used as a "from" address; mandatory

Example

CODE
CALL "UTILS.setSmtpConfiguration"(
    "hostname" => 'example_host',
    "port" => 12345,
    "ssl" => true,
	"starttls" => false,
    "username" => 'smtp-user',
    "password" => 'secret'
)
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.