feat(Send Email Node): Add replyTo support (#4941)

feat(Send Email): Add replyTo support
This commit is contained in:
Jan Oberhauser 2022-12-15 19:50:18 -06:00 committed by GitHub
parent 7a984bb6b7
commit 31409420c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -110,6 +110,14 @@ export class EmailSend implements INodeType {
default: false,
description: 'Whether to connect even if SSL certificate validation is not possible',
},
{
displayName: 'Reply To',
name: 'replyTo',
type: 'string',
default: '',
placeholder: 'info@example.com',
description: 'The email address to send the reply to',
},
],
},
],
@ -169,6 +177,7 @@ export class EmailSend implements INodeType {
subject,
text,
html,
replyTo: options.replyTo as string | undefined,
};
if (attachmentPropertyString && item.binary) {