<< Click to Display Table of Contents >> RayFlow > 7.4 u1 > User and Administration Guide > Configuration > Basic > Plugin Configuration > Advanced Notification Plugin > Notification Settings Example Configuration |
The following is an example config.json that defines a single notification filter:
{
"NotificationSettings": [
{
"Name": "RequestNotification",
"Active": false,
"TemplatePath": "Templates\\Request_Notification.html",
"PhaseFilter": [ "POA" ],
"StatusFilter": [ "Active" ],
"Triggers": [ "Status" ],
“Subject”: “Notification - New Active task“
"Recipients": [ "user@example.com", "marketing" ],
"DatafieldTarget": "0000-0000-0000-000000000000",
"Attachments": {
"FileNameRegex": "\\w+\\.pdf",
"Limit": 1
}
}
]
} |
When using this config.json, the RequestNotification filter should be applied when the task is in the POA phase and changes the status to Active. The email notification will be sent to user@example.com and the group marketing. The notification will include the last PDF file that has been added to the task.