n8n/packages/nodes-base/nodes/EmailSend/v2/descriptions.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
641 B
TypeScript
Raw Normal View History

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>.',
};