wrapper.event.<event_name>.email.smtp.auth.password

Compatibility :3.5.3
Editions :Professional EditionStandard Edition (Not Supported)Community Edition (Not Supported)
Platforms :WindowsMac OSXLinuxIBM AIXFreeBSDHP-UXSolarisIBM z/OSIBM z/Linux

This property makes it possible to specify the password to use for authentication when connecting to an SMTP server to send an email.

Like several of the event emails properties, it can be defined:

  • Globally for all events: wrapper.event.default.email.smtp.auth.password property, or
  • For a specific event: wrapper.event.<event_name>.email.smtp.auth.password property.

The "<event_name>" component of the property name can be either the keyword "default", or one of the Event Types. By setting the default property, all Event Types which are not set explicitly will take on that value.

This property does not have a default value and is required if an authentication type which requires a password is specified. Please see the wrapper.event.<event_name>.email.smtp.auth.type property for more information.

Example:
wrapper.event.default.email.smtp.host=smtp.example.com
wrapper.event.default.email.smtp.port=25
wrapper.event.default.email.smtp.auth.type=PLAIN
wrapper.event.default.email.smtp.auth.userid=me@example.com
wrapper.event.default.email.smtp.auth.password=PASSWORD

WARNING

When any property is read in from the configuration file, the '#' character is treated as a comment such that the rest of the line is ignored. If your password contains a '#' character, you will need to double it up so the character is escaped correctly '##'.

Please see the overview of Event Mails for the usage examples.

Reference: Event Mails