You can configure Exploratory Collaboration Server to send an email notification when an insight is shared, to the users who are invited to see the insight.
To do this, add the configurations about the connection to the email server (SMTP server), as explained in this Note.
Locate docker-compose.yml configuration file under the “exploratory” directory, which was created at the installation of the Collaboration Server.
Open the docker-compose.yml file with an editor, and add the following additional configuration items under the “environment” section under the “exploratory” container section.
Example of Configuration in docker-compose.yml :
exploratory:
...
environment:
...
- EXPL_SMTP_ENABLED=true
- EXPL_SMTP_FROM_ADDRESS=exploratory@yourcompany.com
- EXPL_SMTP_FROM_NAME=Exploratory Collaboration Server
- EXPL_SMTP_HOST=smtp.yourcompany.com
- EXPL_SMTP_PORT=587
- EXPL_SMTP_USERNAME=exploratory
- EXPL_SMTP_PASSWORD=your smtp password
- EXPL_SMTP_TLS_ENABLED=true
Now, restart Collaboration Server, and the email notification for insight sharing is enabled!