Hello there!
-We have sent you this email to verify your account.
-Your One Time Password (OTP) is: ${otp}
-This OTP will expire in 5 minutes.
-Please enter this OTP in the application to verify your account.
-Thank you for choosing us.
-Best Regards,
-keyshade Team
- - - ` + const subject = 'Your One Time Password (OTP) for Keyshade' + + const body = await render( + OTPEmailTemplate({ + otp + }) + ) + await this.sendEmail(email, subject, body) } async sendEmailChangedOtp(email: string, otp: string): PromiseHello there!
-We have sent you this email to verify your new email.
-Your One Time Password (OTP) is: ${otp}
-This OTP will expire in 5 minutes.
-Please enter this OTP in the application to verify your new email.
-Thank you.
-Best Regards,
-keyshade Team
- - - ` + const subject = 'Your Keyshade Email Change One Time Password (OTP)' + + const body = await render( + OTPEmailTemplate({ + otp + }) + ) + await this.sendEmail(email, subject, body) } async accountLoginEmail(email: string): Promise