feat(Gmail Node): Add reply to email (#6453)

Co-authored-by: Matthias Stallmann <feelgood.interface@gmail.com>
This commit is contained in:
Michael Kret
2023-06-16 11:44:37 +03:00
committed by GitHub
parent bbe493896c
commit fddc69ee2c
4 changed files with 39 additions and 4 deletions

View File

@@ -225,6 +225,19 @@ export const messageFields: INodeProperties[] = [
default: '',
description: "The name that will be shown in recipients' inboxes",
},
{
displayName: 'Send Replies To',
name: 'replyTo',
type: 'string',
placeholder: 'reply@example.com',
default: '',
description: 'The email address that the reply message is sent to',
displayOptions: {
hide: {
'/operation': ['reply'],
},
},
},
{
displayName: 'Reply to Sender Only',
name: 'replyToSenderOnly',