This commit is contained in:
2026-02-25 02:54:32 +00:00
parent 625905fc29
commit 7078b68146
10 changed files with 175 additions and 67 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export const bootstrapHandler: Handler = async function (ctx) {
await sendMail({
template: 'VerifyAdmin',
subject: 'Verify your Officer account',
subject: 'Verify your officer.dev account',
to: email,
data: { name: email, url },
});
+1 -1
View File
@@ -15,7 +15,7 @@ export const forgotPasswordHandler: Handler = async function (ctx) {
await sendMail({
template: 'ForgotPassword',
subject: 'Reset your Officer password',
subject: 'Reset your officer.dev password',
to: dbUser.email,
data: { email: dbUser.email, url },
});
+1 -1
View File
@@ -19,7 +19,7 @@ export const resendVerificationHandler: Handler = async function (ctx) {
await sendMail({
template: 'VerifyAdmin',
subject: 'Verify your Officer account',
subject: 'Verify your officer.dev account',
to: user.email,
data: { name: user.email, url },
});
+1 -1
View File
@@ -27,7 +27,7 @@ export const signupHandler: Handler = async function (ctx) {
await sendMail({
template: 'VerifyAdmin',
subject: 'Verify your Officer account',
subject: 'Verify your officer.dev account',
to: dbUser.email,
data: { name: dbUser.email, url },
});