The action settings parameter supports an optional dictionary of settings particular to the action. Missing values will use the default value for that action. Info |
---|
The email action now has the ability to add emails to the reply to field of the email. The replyTo, replyToRoles, and replyToUserSource keys have been added to the possible dictionay options. |
- email
- Setting Keys: "smtpServerName", "from", "subject", "body", "attachmentName", "retries", "fileType", "to", "cc", "bcc", "replyTo", "useRoles", "roles", "userSource", "replyToRoles", "replyToUserSource".
- Note: To, cc, bcc, and replyTo must be Python lists. If useRoles is True, to, cc and bcc will be ignored and all email addresses for all users matching roles in userSource (which defaults to the project's current user source) will be in the to field. Similarly, all users matching the replyToRoles in replyToUserSource will be in the reply to field of the email. If useRoles is true but no roles are listed, all user email addresses in userSource will be in the to field. If omitted, fileType defaults to pdf.
- print
- Setting Keys: "primaryPrinterName", "backupPrinterName", "copies", "printBothSides", "collate", "useRaster", "rasterDPI", "useAutoLandscape", "pageOrientation".
- Note: primaryPrinterName defaults to the default printer. backupPrinterName defaults to "none", but can also have the special value of "default". printBothSides, collate, and useRaster are booleans which default to false. rasterDPI is only used if useRaster is true. useAutoLandscape defaults to true. If useAutoLandscape is false, pageOrientation, which can have values of "portrait" or "landscape" (default is "portrait"), is used.
- save
- Setting Keys: "path", "fileName" and "format".
- Note: Since the script is sent to the gateway for execution, path and fileName must be relative to the gateway.
- ftp
- Setting Keys: "server", "port", "username", "password", "useSSL", "path", "fileName", and "format".
- Note: Server and fileName are required. If omitted, fileType defaults to pdf, port defaults to 21, and useSSL defaults to false.
|