mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-23 12:49:09 +00:00
* use typedi for UserManagementMailer * use typedi for SamlService * fix typos * use typedi for Queue * use typedi for License * convert some more code to use typedi
27 lines
459 B
TypeScript
27 lines
459 B
TypeScript
export type InviteEmailData = {
|
|
email: string;
|
|
firstName?: string;
|
|
lastName?: string;
|
|
inviteAcceptUrl: string;
|
|
domain: string;
|
|
};
|
|
|
|
export type PasswordResetData = {
|
|
email: string;
|
|
firstName?: string;
|
|
lastName?: string;
|
|
passwordResetUrl: string;
|
|
domain: string;
|
|
};
|
|
|
|
export type SendEmailResult = {
|
|
emailSent: boolean;
|
|
};
|
|
|
|
export type MailData = {
|
|
body: string | Buffer;
|
|
emailRecipients: string | string[];
|
|
subject: string;
|
|
textOnly?: string;
|
|
};
|