feat(Send Email Node): New operation sendAndWait (#12775)

This commit is contained in:
Michael Kret
2025-01-24 15:59:43 +02:00
committed by GitHub
parent d48cc36061
commit a197fbb21b
14 changed files with 261 additions and 111 deletions

View File

@@ -0,0 +1,23 @@
import type { INodeProperties } from 'n8n-workflow';
export const fromEmailProperty: INodeProperties = {
displayName: 'From Email',
name: 'fromEmail',
type: 'string',
default: '',
required: true,
placeholder: 'admin@example.com',
description:
'Email address of the sender. You can also specify a name: Nathan Doe <nate@n8n.io>.',
};
export const toEmailProperty: INodeProperties = {
displayName: 'To Email',
name: 'toEmail',
type: 'string',
default: '',
required: true,
placeholder: 'info@example.com',
description:
'Email address of the recipient. You can also specify a name: Nathan Doe <nate@n8n.io>.',
};