Versions Compared

Key

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

...

FieldDescription
Email FromThe Email Address the generated email will appear from. An Expression that must evaluate to a fixed string.
Subject ExpressionAllows the user to build a PhixFlow Expression which will be used to create the Email Subject. Must evaluate to a fixed string.
Attach FileWhether or not the file should be attached to the email sent.
Zip FileThis option only appears when the option to Attach File is selected. This specifies whether or not the attached file will be zipped.
Message ExpressionAllows the user to build a PhixFlow Expression which will be used to create the message body of the email. Must evaluate to a fixed string.
User RecipientsTab containing a summary list of each Recipient set up to receive the email.
Recipients ExpressionAllows the user to build a PhixFlow Expression which will be used to calculate the recipients for the email. The recipients returned by this expression will be added to the list of recipients returned by the individual User Notification Rules on the Email Recipients tab.

For example to simply enter a list of email addresses you can enter an expression such as:

["john.smith@acme.com","jane.doe@corp.com"]

The result of the expression must either be a single fixed string which should be a valid email address or a list object which contains one or more strings, each of which must be a valid email address.

...