merged with dev

This commit is contained in:
unknown
2024-08-21 11:16:05 +03:00
19 changed files with 1592 additions and 63 deletions

View File

@ -199,7 +199,7 @@ export class UserAuthService {
});
const subject = 'OTP send successfully';
const message = `Your OTP code is ${otpCode}`;
this.emailService.sendOTPEmail(data.email, subject, message);
this.emailService.sendEmail(data.email, subject, message);
return otpCode;
}