Configure SMTP Email in Ambience/Repertoire 202x

You can add an additional e.g Outlook email by replicating the configuration sample used for AWS SMTP mail under the “elixir.mail” section within the application.conf file. For example:

#Standard SMTP server, eg. Outlook
Outlook {
  from = "<user outlook account>"
  host = "<outlook smtp address>"
  dnsResolver = ""
  port = "<do refer to your Outlook configuration requirement>"
  user = "<user outlook account>"
  password = "<your password>"
  connectionTimeout = 30000
  tls = true
  ssl = true
  authMechanism = ""
  debug = false
}

Afterward, you’ll need to specify which SMTP configuration the Repertoire Server should use on the following line. For example:

elixir.mail {
  # The debug server is used by default - this logs the mails, but does not send them
  # Change this to gmail or aws to use the different SMTP server defined below
  # or add your own server following the pattern of the aws configuration.
  smtp = "Outlook"
  sender.email = "user outlook account"

Note:
You will need to create a sender.email account for the Repertoire Server to use when sending out emails. Additionally, please verify the Outlook requirements on your end to ensure the configuration works successfully.