...
Notifier | Type | Description | |
---|---|---|---|
simpleUserNotifier | User notification | Generates notifications about user records. | |
simpleResourceObjectNotifier | Resource object notification | Generates notifications about resource objects (e.g. accounts). | |
userPasswordNotifier | User notification | Generates notifications about user passwords. | |
accountPasswordNotifier | Account notification | Generates notifications about account passwords. | |
simpleWorkflowNotifier | Workflow notification | Generates notifications about start/completion of work items (i.e. user tasks) and about start/completion of workflow process instances. | |
simpleCampaignNotifier, simpleCampaignStageNotifier | Certification notification | Generates notifications about certification campaigns. | |
simpleTaskNotifier | Task notification | Generates notifications about tasks. | |
generalNotifier | This is a general purpose notifier that is driven by expressions, which transform an event into a notification. |
...
Name | Required | Description |
---|---|---|
contentType | true | Content type for the attachment, e.g. image/png or text/html. |
content | choice | Content of the attachment. |
contentFromFile | choice | Path of the file that provides the content for this attachment. |
fileName | false | File name for the attachment. E.g. in the case of the mail transport it should be put into Content-Disposition header field. If omitted and if contentFromFile is used, it is derived from the name of that file. If it omitted with used content, it's value is 'attachment'. |
contentId | false | Value of the Content-ID header of MIME body part for this attachment. This can used to reference image attachments from your email HTML. E.g. <c:contentId><customerLogo></c:contentId> is referenced in HTML as <img src="cid:customerLogo"/> |
Executing the handlers
When an event is created, all the handlers defined at the level of <notificationConfiguration> are executed.
...