Skip to content

Commit

Permalink
name chanhe
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhattin committed Dec 24, 2024
1 parent a488a4b commit 0310304
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "vite dev --host",
"build": "partytown copylib static/~partytown --no-debug && vite build",
"build": "partytown copylib static/~partytown --no-debug && vite build && rm -rf build/sample_ai_img",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
Expand Down
4 changes: 3 additions & 1 deletion src/api/routers/_auth_security.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ export const send_email_verify_otp = async (email: string, otp: string) => {
senders_name: env.EMAIL_SENDER_NAME!,
recipient_emails: [email],
subject: 'OTP for Email Verification',
html: `Please verify your Account for Valmiki Ramayanam Project. Your OTP is <b>${otp}</b>.`
html:
`Please verify your Account for Valmiki Ramayanam Project. Your OTP is <b>${otp}</b>.` +
'<br/><br/>Team Sanskrit Channel'
});
};
2 changes: 1 addition & 1 deletion src/api/routers/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ const send_reset_password_otp_route = publicProcedure
recipient_emails: [user_info.user_email],
senders_name: env.EMAIL_SENDER_NAME!,
subject: 'Reset Password OTP for Valmiki Ramayanam',
html: `Please reset your password by entering the OTP : <b>${otp}</b> in the reset password page.`
html: `Please reset your password by entering the OTP : <b>${otp}</b> in the reset password page.<br/><br/>Team Sanskrit Channel`
})
]);
return {
Expand Down
4 changes: 2 additions & 2 deletions src/api/routers/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const verify_user_route = protectedAdminProcedure
recipient_emails: [email],
senders_name: env.EMAIL_SENDER_NAME!,
subject: 'Your Account has been Approved',
html: `Your Account has been approved by the Admin for the Valmiki Ramayanam Project. <i>Your Effort, Time and Contributions are very much appreciated</i>.<br/><br/><b>Praṇāma</b>`
html: `Your Account has been approved by the Admin for the Valmiki Ramayanam Project. <i>Your Effort, Time and Contributions are highly appreciated.</i><br/><br/><b>Praṇāma</b><br/>Team Sanskrit Channel`
})
]);
}
Expand Down Expand Up @@ -164,7 +164,7 @@ const update_user_allowed_langs_route = protectedAdminProcedure
subject: 'Translation Language Alloted for Contribution',
html:
`Now you can contribute to the Valmiki Ramayanam Translations for the following languages: <b>${langs_allowed.join(', ')}</b><br/>` +
'<i>Your Contributions to the Project are Appreciated.</i><br/><br/><b>Praṇāma</b>'
'<i>Your Contributions to the Project are highly Appreciated.</i><br/><br/><b>Praṇāma</b><br>Team Sanskrit Channel'
}))
]);
});
Expand Down

0 comments on commit 0310304

Please sign in to comment.