Configure Notifications for Operations

In the FintechOS Platform it is possible to receive notifications for operations such as scheduled jobs.

For v24.3.2 and above, you must firstly configure the channel provider. In Configuration Manager, navigate to Server Scripts > App settings and configure the EmailTo and EmailCC fields. Add the email addresses. Restart the Service Scripts app service from Azure.

Make sure you tick the Enabled box, to enable the schedule job.

For versions 24.3.2 and below, the options such as Send Notification On Error or Send Notification On Success are available in Studio. For this to properly function, the email settings need to be configured in the mail.config file, as follows:

  • Navigate to the JobServer folder. Please note that the JobServer folder is in the folder with the name of your project.

  • Open the mail.config file with a text editor (such as Notepad++). It needs to contain the following:

Copy
<mailSettings>
  <server>test@fintechos.com</server>
  <port>587</port>
  <auth>true</auth>
  <user>test@fintechos.com</user>
  <password>insertPasswordHere</password>
  <from>test@fintechos.com</from>
  <to>test@fintechos.com</to>
  <cc>test@fintechos.com</cc>
  <bcc></bcc>
  <replyTo>test@fintechos.com</replyTo>
</mailSettings>
  • Fill in the parameters, as follows:

    • <server>FintechServer</server> - the server from which FintechOS operates;

    • <port>587</port> - the port corresponding to the server;

    • <auth>true</auth> - set the value to true if the authentication requires username and password;

    • <user>test@fintechos.com</user> - the username corresponding to the server;

    • <password>insertPasswordHere</password> - the password of the provided user;

    • <from>test@fintechos.com</from> - the email address which appears in the From field;

    • <to>test@fintechos.com</to> - the email address to send the notification to;

    • <cc>test@fintechos.com</cc> - optional; an additional address to send the notification to.

  • Save and close the mail.config file.