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
-
Get the IP and port and other required information for the SMTP server.
-
Update the following property values in the
values.yamlof Helm charts:Property Value smtp.host SMTP host server IP address smtp.port Port on the SMTP server listening smtp.user SMTP username smtp.password SMTP password -
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" }'