Skip to content

Commit

Permalink
feat(Send Email Node): Add replyTo support (#4941)
Browse files Browse the repository at this point in the history
feat(Send Email): Add replyTo support
  • Loading branch information
janober authored Dec 16, 2022
1 parent 7a984bb commit 3140942
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/nodes-base/nodes/EmailSend/EmailSend.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
],
},
],
Expand Down Expand Up @@ -169,6 +177,7 @@ export class EmailSend implements INodeType {
subject,
text,
html,
replyTo: options.replyTo as string | undefined,
};

if (attachmentPropertyString && item.binary) {
Expand Down

0 comments on commit 3140942

Please sign in to comment.