diff --git a/packages/nodes-base/nodes/EmailSend/v2/send.operation.ts b/packages/nodes-base/nodes/EmailSend/v2/send.operation.ts index 330aa7c7b7554..0c2dda97ed481 100644 --- a/packages/nodes-base/nodes/EmailSend/v2/send.operation.ts +++ b/packages/nodes-base/nodes/EmailSend/v2/send.operation.ts @@ -3,7 +3,9 @@ import type { IExecuteFunctions, INodeExecutionData, INodeProperties, + JsonObject, } from 'n8n-workflow'; +import { NodeApiError } from 'n8n-workflow'; import { createTransport } from 'nodemailer'; import type SMTPTransport from 'nodemailer/lib/smtp-transport'; @@ -100,7 +102,7 @@ const properties: INodeProperties[] = [ type: 'string', default: '', description: - 'Name of the binary properties that contain data to add to email as attachment. Multiple ones can be comma-separated.', + 'Name of the binary properties that contain data to add to email as attachment. Multiple ones can be comma-separated. Reference embedded images or other content within the body of an email message, e.g. <img src="cid:image_1">', }, { displayName: 'CC Email', @@ -227,6 +229,7 @@ export async function execute(this: IExecuteFunctions): Promise