Use the THEN clause to specify the responses that need to be invoked when the rule activates.
You do so by referencing a previously defined response and any necessary parameters. Your defined responses provide default values to execute your response, but you can override these default values directly in the rule.
In the following example, when the conditions of your rule are met, the THEN clause sends an email to broker@company.com using the parameters defined in the response named EmailBrokerResponse:
THEN EmailBrokerResponse WITH to="broker@company.com"
To invoke multiple Responses, separate the Responses with “AND”:
THEN EmailBrokerResponse WITH to="broker@company.com" AND IMBrokerResponse WITH to="broker@company.com"