From b5304b3c264144aaef6dc23a25278f4a38b41b10 Mon Sep 17 00:00:00 2001 From: Mayank Mishra Date: Mon, 15 Dec 2025 16:53:12 +0530 Subject: [PATCH] Refactor OTP email content for host registration and resend functionality to improve clarity and tone. --- src/modules/host/services/resendOTPEmail.service.ts | 4 ++-- src/modules/host/services/sendOTPEmail.service.ts | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/modules/host/services/resendOTPEmail.service.ts b/src/modules/host/services/resendOTPEmail.service.ts index f7a2a34..1561e7f 100644 --- a/src/modules/host/services/resendOTPEmail.service.ts +++ b/src/modules/host/services/resendOTPEmail.service.ts @@ -15,8 +15,8 @@ export async function resendOtpEmail( const htmlContent = `

Dear ${role},

Your new OTP is: ${otp}

-

This code is valid for 5 minutes. Please do not share it with anyone.

-

Best regards,
Minglar Team

+

This code will be valid for the next 5 minutes.

+

Warm regards,
Minglar Team

`; try { diff --git a/src/modules/host/services/sendOTPEmail.service.ts b/src/modules/host/services/sendOTPEmail.service.ts index 15c1e70..e1d9b1f 100644 --- a/src/modules/host/services/sendOTPEmail.service.ts +++ b/src/modules/host/services/sendOTPEmail.service.ts @@ -13,9 +13,10 @@ export async function sendOtpEmailForHost( const htmlContent = `

Dear Host,

-

Your OTP for registration is: ${otp}

-

This code is valid for 5 minutes. Please do not share it with anyone.

-

Best regards,
Minglar Team

+

You’re almost all set! 🎉

+

Enter ${otp} to wrap your registration.

+

This code will be valid for the next 5 minutes.

+

Warm regards,
Minglar Team

`; try {