Workflow Send Email Node Multiple Recipients Support (#17458)
This PR adds support sending emails to multiple recipients Figma Reference: https://www.figma.com/design/xt8O9mFeLl46C5InWwoMrN/Twenty?node-id=88868-88963&t=Ya0csmNlN4xxczvV-11 Demo: https://github.com/user-attachments/assets/ecaeaaec-fe42-4fb5-96d3-a91d08b30148
This commit is contained in:
+5
-1
@@ -41,7 +41,11 @@ describe('computeWorkflowVersionStepChanges', () => {
|
||||
settings: {
|
||||
input: {
|
||||
connectedAccountId: '',
|
||||
email: '',
|
||||
recipients: {
|
||||
to: '',
|
||||
cc: '',
|
||||
bcc: '',
|
||||
},
|
||||
subject: '',
|
||||
body: '',
|
||||
},
|
||||
|
||||
+5
-1
@@ -242,7 +242,11 @@ export class WorkflowVersionStepOperationsWorkspaceService {
|
||||
...BASE_STEP_DEFINITION,
|
||||
input: {
|
||||
connectedAccountId: '',
|
||||
email: '',
|
||||
recipients: {
|
||||
to: '',
|
||||
cc: '',
|
||||
bcc: '',
|
||||
},
|
||||
subject: '',
|
||||
body: '',
|
||||
},
|
||||
|
||||
+3
-1
@@ -1,6 +1,8 @@
|
||||
import { type EmailRecipients } from 'twenty-shared/workflow';
|
||||
|
||||
export type WorkflowSendEmailActionInput = {
|
||||
connectedAccountId: string;
|
||||
email: string;
|
||||
recipients: EmailRecipients;
|
||||
subject?: string;
|
||||
body?: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user