You can send an email notification once the model generation is completed in WSO2 ML. The email which will be automatically sent to the defined recipient(s), will include a link to the page of the generated model. Email template for each notification type is specified in the <ML_HOME>/repository/conf/email/ml-email-templates.xml
file. The configurations you require to enable sending these email notifications are explained below.
Table of Contents maxLevel 3
Setting the adapter configurations
Edit the following adapter configuration properties defined in the <ML_HOME>/repository/conf/output-event-adapters.xml
file to set the adapter configurations as shown below.
Property | Description | Example value |
---|---|---|
mail.smtp.from | E mail address of the sender | sender@gmail.com |
mail.smtp.user | User ID of the sender's email address | sender |
mail.smtp.password | Password of the sender's email account | sender_password |
Tip |
---|
The values of the |
Code Block | ||
---|---|---|
| ||
<adapterConfig type="email"> <property key="mail.smtp.from">email-address</property> <property key="mail.smtp.user">user-name</property> <property key="mail.smtp.password">password</property> <property key="mail.smtp.host">smtp.gmail.com</property> <property key="mail.smtp.port">587</property> <property key="mail.smtp.starttls.enable">true</property> <property key="mail.smtp.auth">true</property> <!-- Thread Pool Related Properties --> <property key="maxThread">100</property> <property key="keepAliveTimeInMillis">20000</property> <property key="jobQueueSize">10000</property> </adapterConfig> |
...
Info |
---|
Gmail blocks third-party applications (in this case Axis2) from using Gmail accounts to send emails due to security reasons. Therefore, if you need to use a gmail account as your sender email account, you may require to enable access for less secure apps in it as shown below. For instructions on enabling access for less secure apps, go to the option available for less secure apps in the Gmail account.
|
...