Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
"triggers": [
  {
    "event":"on-change-state",
    "conditions": [
      {
        "state": "Published"
      }
    ],  
    "actions": [
      {
        "action":"send-email",
        "recipients": [
            "@watchers",
            "@creator",
            "@lastUpdatedBy",
            "@document_user_reviewers@"
        ],
        "notification": {
          	"subject":"${content.title} has been published",
          	"title":"${content.title} is published",
          	"body":"Hello, ${content.link} in the ${content.space} space has approved and is now in the PUBLSIHEDPUBLISHED state"
        }
      },
      {
        "action":"set-message",
        	"type":"info",
        	"title":"Published",
        	"body":"The page has been approved and published",
        	"tags":"state",
        	"mode":"autoClose"
      }
    ]
  }
]

...