-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Gmail Node): Remove duplicate options when creating drafts (#9299)
- Loading branch information
Showing
1 changed file
with
8 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,49 +116,6 @@ export const draftFields: INodeProperties[] = [ | |
}, | ||
default: {}, | ||
options: [ | ||
{ | ||
displayName: 'To Email', | ||
name: 'sendTo', | ||
type: 'string', | ||
default: '', | ||
placeholder: '[email protected]', | ||
description: | ||
'The email addresses of the recipients. Multiple addresses can be separated by a comma. e.g. [email protected], [email protected].', | ||
}, | ||
{ | ||
displayName: 'BCC', | ||
name: 'bccList', | ||
type: 'string', | ||
description: | ||
'The email addresses of the blind copy recipients. Multiple addresses can be separated by a comma. e.g. [email protected], [email protected].', | ||
placeholder: '[email protected]', | ||
default: '', | ||
}, | ||
{ | ||
displayName: 'CC', | ||
name: 'ccList', | ||
type: 'string', | ||
description: | ||
'The email addresses of the copy recipients. Multiple addresses can be separated by a comma. e.g. [email protected], [email protected].', | ||
placeholder: '[email protected]', | ||
default: '', | ||
}, | ||
{ | ||
displayName: 'Send Replies To', | ||
name: 'replyTo', | ||
type: 'string', | ||
placeholder: '[email protected]', | ||
default: '', | ||
description: 'The email address that the reply message is sent to', | ||
}, | ||
{ | ||
displayName: 'Thread ID', | ||
name: 'threadId', | ||
type: 'string', | ||
placeholder: '18cc573e2431878f', | ||
default: '', | ||
description: 'The identifier of the thread to attach the draft', | ||
}, | ||
{ | ||
displayName: 'Attachments', | ||
name: 'attachmentsUi', | ||
|
@@ -223,6 +180,14 @@ export const draftFields: INodeProperties[] = [ | |
default: '', | ||
description: 'The email address that the reply message is sent to', | ||
}, | ||
{ | ||
displayName: 'Thread ID', | ||
name: 'threadId', | ||
type: 'string', | ||
placeholder: '18cc573e2431878f', | ||
default: '', | ||
description: 'The identifier of the thread to attach the draft', | ||
}, | ||
{ | ||
displayName: 'To Email', | ||
name: 'sendTo', | ||
|