Awm_hr_forms_mail node key & message params

A very specific question!

In the AWM (Adobe Workfront Management) HR Forms module, the awm_hr_forms_mail node is used to send automated emails to users based on specific triggers and conditions.

The awm_hr_forms_mail node has several parameters that can be configured to customize the email notification. Here are the key and message parameters:

Key Parameters:

  1. to: The email address of the recipient(s) who will receive the email notification.
  2. subject: The subject line of the email notification.
  3. body: The body of the email notification, which can include placeholders for dynamic data.
  4. from: The email address of the sender (usually the Workfront system).

Message Parameters:

  1. message: The actual email message that will be sent to the recipient(s). This can include placeholders for dynamic data, such as {form_name}, {form_status}, {form_submitter}, etc.

Here's an example of how you might configure the awm_hr_forms_mail node:

{
  "awm_hr_forms_mail": {
    "to": "[email protected]",
    "subject": "New HR Form Submission",
    "body": "A new HR form has been submitted: {form_name}",
    "from": "[email protected]",
    "message": "A new HR form has been submitted: {form_name}. Please review and take action accordingly."
  }
}

In this example, the email notification will be sent to [email protected] with the subject "New HR Form Submission". The body of the email will include the name of the HR form that was submitted, and the message will include a brief description of the submission.