n8n
Version:
n8n Workflow Automation Tool
19 lines (18 loc) • 390 B
TypeScript
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;
};