Skip to main content
Feedback

Configure SMTP/Admin Emails

This section provides the information for the SMTP configuration with Local Edition. The configuration options are available in the Helm charts.

SMTP setup on ML Cluster

Procedure

  1. Get the IP and port and other required information for the SMTP server.

  2. Update the following property values in the values.yaml of Helm charts:

    PropertyValue
    smtp.hostSMTP host server IP address
    smtp.portPort on the SMTP server listening
    smtp.userSMTP username
    smtp.passwordSMTP password
  3. Test the SMTP service by making a curl call from the CM node: if the SMTP server is correctly configured then there should be mails in the SMTP server.

    curl -X POST \
    http://localhost:4080/tml-mail/api/v1/mail/json \
    -H 'Content-Type: application/json' \
    -H 'Postman-Token: 89088130-7ddb-433e-a005-7a907e0855ff' \
    -H 'cache-control: no-cache' \
    -d '{ "sender":"ankitjaisender@boomi.com", "ccRecipients":["cc@boomi.com"],"bccRecipients":
    ["bcc@boomi.com"],"recipients":["to@boomi.com"], "subject":"test subject", "body":"testing out
    mails service" }'
On this Page