Email event publisher is used to publish events in XML, JSON or text formats via email transports.
...
Creating an email event publisher
For instructions on creating an email event publisher, see Publishing Eventssee Configuring CEP to Create Alerts.
Configuring global properties
The following global properties can be set for the Email event publisher type in the <CEP_HOME>/repository/conf/input-event-adapters.xml
file. These properties apply to all the publishers of the email
type. If a global property available by default is removed, the default value of the property is considered.
Info |
---|
Custom properties cannot be added as global properties. |
Property Key | Description | Data Type | Default Value |
---|---|---|---|
mail.smtp.from | The email address used by the publisher to publish events. | String | abcd@gmail.com |
mail.smtp.user | The username used by the publisher to publish events via email. | String | abcd |
mail.smtp.password | The password used by the publish events via email. | String | xxxx |
mail.smtp.host | The host of the email server. | String | smtp.gmail.com |
mail.smtp.port | The port of the email server. | Integer | 587 |
mail.smtp.starttls.enable | This property specifies whether STARTTLS encryption is enabled or not. STARTTLS is an extension which enables a plain text connection to be upgraded to an encrypted (SSL or TLS) connection. | Boolean | true |
mail.smtp.auth | This property specifies whether SMTP authentication is enabled or not. | Boolean | true |
minThread | The minimum number of threads (including idle threads) that should be available in the thread pool at a given time. | Integer | 8 |
maxThread | The maximum number of threads (including idle threads) that should be available in the thread pool at a given time. | Integer | 100 |
keepAliveTimeInMillis | The maximum number of milliseconds that idle threads should be kept alive when the total number of threads in the pool exceeds the number of cores in the machine. | Integer | 20000 |
jobQueueSize | The maximum number of milliseconds that idle threads should be kept alive when the total number of threads in the pool exceeds the number of cores in the machine. | Integer | 10000 |
Configuring adapter properties
Specify the Dynamic Adapter Properties, when creating an email event publisher using the management console as shown below.
Info |
---|
After entering the above adapter properties, select the Message Format which you want to apply on the published events. Also, click Advanced to define custom output mappings based on the Message Format you selected. For more information on custom output mapping types, see Publishing Events in Various Event Formats. |
...
Adapter Property | Description | Configuration file property | Example |
---|---|---|---|
Email Address | Email address of the client. Register the publisher for multiple email IDs' by separating them with commas. | email.address | user@gmail.com |
Subject | Subject of the email to be sent to the defined email address | email.subject | This is a test mail. |
Email Type | The email format to be sent to the defined email address | email.type | text/plain |
Related samples
...