feat: fix update email template editor

This commit is contained in:
anik-ghosh-au7
2022-07-30 20:15:49 +05:30
parent 617dcdde53
commit 8b34e001ef
2 changed files with 33 additions and 2 deletions

View File

@@ -204,3 +204,9 @@ export enum webhookVerifiedStatus {
NOT_VERIFIED = 'not_verified',
PENDING = 'verification_pending',
}
export const emailTemplateVariables = {
user_name: '{{user.name}}',
user_email: '{{user.email}}',
organization_name: '{{org.name}}',
};