This site has moved to the integrated Appfire documentation and information site for our apps.
From February 2024 this site is no longer updated.
Take a look here! If you have any questions please email support@appfire.com
Sending an email on the state expiry
JSON trigger to sending an email on on-expire
event
"triggers":
[
{
"event":"on-expire",
"actions":[
{
"action":"send-email",
"recipients":[
"@watchers",
"@creator",
"@lastUpdatedBy"
],
"notification":{
"subject":"${content.title} has expired",
"title":"${content.title} has expired",
"body":"Hello, ${content.link} in the ${content.space} space has expired and needs to be reviewed"
}
},
{
"action":"set-message",
"type":"info",
"title":"Expired",
"body":"The page has expired",
"tags":"state",
"mode":"autoClose"
}
]
}
]
 If adding the JSON trigger using workflow builder there is no need to include the opening "triggers":
 JSON markup notation, as it will be added automatically by workflow builder.
For the trigger to occur a state must have an expiration date added that expires.
0