An Action that will be executed when the related Operation is execute. The Action can be executed either before (pre) or after (post) the Operation. The Action needs to have been defined in the OperationActions section.
Syntax
<Action id="notify" mode="post">
<Properties>
<Property name="sendemail.subject" value="Your Employee (Oracle) account has been created"/>
<Property name="sendemail.fromaddress" value="%{email.fromaddress}" />
<Property name="sendemail.toaddress.attribute" value="email" />
<Property name="template.document" value="EmailTemplate-AccountCreated" />
</Properties>
</Action>
Arguments
Name | Required | Description | Example | id | yes | The identifier of a pre-defined Action, from the OperationActions section | id="notify" | mode | yes | One of the valid modes:
| mode="post" |
PropertiesEach Action will have it's own unique set of required and optional Properties.
|