mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Add CC property to email
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user