mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
24 lines
641 B
TypeScript
24 lines
641 B
TypeScript
|
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>.',
|
||
|
};
|