diff --git a/packages/nodes-base/nodes/EmailSend/v2/send.operation.ts b/packages/nodes-base/nodes/EmailSend/v2/send.operation.ts index 3a80e306c634f..8b40d51746f3a 100644 --- a/packages/nodes-base/nodes/EmailSend/v2/send.operation.ts +++ b/packages/nodes-base/nodes/EmailSend/v2/send.operation.ts @@ -56,6 +56,10 @@ const properties: INodeProperties[] = [ name: 'HTML', value: 'html', }, + { + name: 'Both', + value: 'both', + }, ], default: 'text', }, @@ -70,7 +74,7 @@ const properties: INodeProperties[] = [ description: 'Plain text message of email', displayOptions: { show: { - emailFormat: ['text'], + emailFormat: ['text', 'both'], }, }, }, @@ -85,7 +89,7 @@ const properties: INodeProperties[] = [ description: 'HTML text message of email', displayOptions: { show: { - emailFormat: ['html'], + emailFormat: ['html', 'both'], }, }, }, @@ -208,11 +212,11 @@ export async function execute(this: IExecuteFunctions): Promise