UNPKG

@mineru98/n8n-ko

Version:

n8n Workflow Automation Tool - Korean Version

19 lines (18 loc) 390 B
export type InviteEmailData = { email: string; inviteAcceptUrl: string; }; export type PasswordResetData = { email: string; firstName: string; passwordResetUrl: string; }; export type SendEmailResult = { emailSent: boolean; }; export type MailData = { body: string | Buffer; emailRecipients: string | string[]; subject: string; textOnly?: string; };