Files
hoppscotch/packages/hoppscotch-backend/src/mailer/MailDescriptions.ts
2023-01-09 19:02:14 +05:30

17 lines
369 B
TypeScript

export type MailDescription = {
template: 'team-invitation';
variables: {
invitee: string;
invite_team_name: string;
action_url: string;
};
};
export type UserMagicLinkMailDescription = {
template: 'code-your-own'; //Alias of template in Postmark, change this to env variable
variables: {
inviteeEmail: string;
magicLink: string;
};
};