Add CC property to email

This commit is contained in:
Felix Plitzko 2019-10-08 14:40:47 +02:00 committed by GitHub
parent b7eab083e8
commit b453c05f7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,