If your OTP does not work, please request for a new one.
` 34 | 35 | // TODO: Replace the `from` and `subject` fields with content specific to your application 36 | const mail = { 37 | to: email, 38 | from: `${this.config.get('otp.sender_name')} <${this.config.get( 39 | 'otp.email', 40 | )}>`, 41 | subject: `One-Time Password (OTP) for ${this.config.get( 42 | 'otp.sender_name', 43 | )}`, 44 | html, 45 | } 46 | 47 | this.logger.info(`Sending mail to ${email}`) 48 | await this.mailerService.sendMail(mail) 49 | } 50 | 51 | async verifyOtp(verifyOtpDto: VerifyOtpDto): Promise