mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat(Send Email Node): New operation sendAndWait (#12775)
This commit is contained in:
23
packages/nodes-base/nodes/EmailSend/v2/descriptions.ts
Normal file
23
packages/nodes-base/nodes/EmailSend/v2/descriptions.ts
Normal 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>.',
|
||||
};
|
||||
Reference in New Issue
Block a user