fix(Gmail Node): Remove duplicate options when creating drafts (#9299)
This commit is contained in:
@@ -116,49 +116,6 @@ export const draftFields: INodeProperties[] = [
|
|||||||
},
|
},
|
||||||
default: {},
|
default: {},
|
||||||
options: [
|
options: [
|
||||||
{
|
|
||||||
displayName: 'To Email',
|
|
||||||
name: 'sendTo',
|
|
||||||
type: 'string',
|
|
||||||
default: '',
|
|
||||||
placeholder: 'info@example.com',
|
|
||||||
description:
|
|
||||||
'The email addresses of the recipients. Multiple addresses can be separated by a comma. e.g. jay@getsby.com, jon@smith.com.',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
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. jay@getsby.com, jon@smith.com.',
|
|
||||||
placeholder: 'info@example.com',
|
|
||||||
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. jay@getsby.com, jon@smith.com.',
|
|
||||||
placeholder: 'info@example.com',
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: 'Send Replies To',
|
|
||||||
name: 'replyTo',
|
|
||||||
type: 'string',
|
|
||||||
placeholder: 'reply@example.com',
|
|
||||||
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',
|
displayName: 'Attachments',
|
||||||
name: 'attachmentsUi',
|
name: 'attachmentsUi',
|
||||||
@@ -223,6 +180,14 @@ export const draftFields: INodeProperties[] = [
|
|||||||
default: '',
|
default: '',
|
||||||
description: 'The email address that the reply message is sent to',
|
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',
|
displayName: 'To Email',
|
||||||
name: 'sendTo',
|
name: 'sendTo',
|
||||||
|
|||||||
Reference in New Issue
Block a user