EmailRecipientConfig
Configuration for resolving email recipients from client contacts, user roles, and static addresses.
Used by PCL settings, workflow steps, and any feature that needs configurable email recipients.
Properties
| Name | Type | Description |
|---|---|---|
| contactTypes | array of enum | Client contact types to include (e.g. Main, Billing, Payroll) |
Client contact types to include (e.g. Main, Billing, Payroll) | ||
| userTypes | array of enum | User role types to include (e.g. ClientManager, ClientPartner). |
User role types to include (e.g. ClientManager, ClientPartner). | ||
| emailAddresses | array of string | Static email addresses to include |
Static email addresses to include | ||
JSON Example
{
"contactTypes": [
"Main"
],
"userTypes": [
"TaskOwner"
],
"emailAddresses": [
"string"
]
}