To configure the outgoing mail server, create a Global Setting with the name external.service.email_smtp_settings.
The value of the setting is a JSON string, as follows:
{ "address": "smtp address", "port": "smtp port", "user_name": "username", "password": "password", "domain": "domain that email is sent from" }
The parameters are as follows:
| Parameter | Description | Example |
|---|---|---|
| address | domain name of the smtp server | smtp.mandrillapp.com |
| port | port number the smtp server uses | 587 |
| username | your username for smtp server | someone@mycompany.com |
| password | your password for smtp server | abracadabra |
| domain | domain name you use for email addresses | mycompany.com |