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