mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
feat(Send Email Node): Add replyTo support (#4941)
feat(Send Email): Add replyTo support
This commit is contained in:
parent
7a984bb6b7
commit
31409420c2
|
@ -110,6 +110,14 @@ export class EmailSend implements INodeType {
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Whether to connect even if SSL certificate validation is not possible',
|
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,
|
subject,
|
||||||
text,
|
text,
|
||||||
html,
|
html,
|
||||||
|
replyTo: options.replyTo as string | undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (attachmentPropertyString && item.binary) {
|
if (attachmentPropertyString && item.binary) {
|
||||||
|
|
Loading…
Reference in a new issue