From 38e6521930c09aef4e90fd57a7155687b23d1bd3 Mon Sep 17 00:00:00 2001
From: Akhil Meka
Date: Thu, 26 Jun 2025 16:30:03 +0530
Subject: [PATCH] Add expiry warning to user activation mail
---
src/user/user.service.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/user/user.service.ts b/src/user/user.service.ts
index 4123df2..b23b982 100644
--- a/src/user/user.service.ts
+++ b/src/user/user.service.ts
@@ -84,13 +84,13 @@ export async function resetUser(userId: string, user: AuthenticatedUser) {
const sent = await sendMail(
userInDb.email,
"Quicker Permits account reset",
- `Click here to reset.`
+ }">here to reset.
The above link expires in 48 hours
`
);
}