diff --git a/packages/nodes-base/nodes/EmailSend.node.ts b/packages/nodes-base/nodes/EmailSend.node.ts index b5cebaae05..0e73bb2e87 100644 --- a/packages/nodes-base/nodes/EmailSend.node.ts +++ b/packages/nodes-base/nodes/EmailSend.node.ts @@ -51,6 +51,15 @@ export class EmailSend implements INodeType { placeholder: 'info@example.com', description: 'Email address of the recipient.', }, + { + displayName: 'CC Email', + name: 'ccEmail', + type: 'string', + default: '', + required: false, + placeholder: 'cc@example.com', + description: 'Email address of CC recipient.', + }, { displayName: 'Subject', name: 'subject', @@ -96,6 +105,7 @@ export class EmailSend implements INodeType { const fromEmail = this.getNodeParameter('fromEmail') as string; const toEmail = this.getNodeParameter('toEmail') as string; + const ccEmail = this.getNodeParameter('ccEmail') as string; const subject = this.getNodeParameter('subject') as string; const text = this.getNodeParameter('text') as string; const html = this.getNodeParameter('html') as string; @@ -122,6 +132,7 @@ export class EmailSend implements INodeType { const mailOptions = { from: fromEmail, to: toEmail, + cc: ccEmail, subject, text, html,