Update email in beginEmailSignupProcess

This commit is contained in:
Tuan Dang
2024-05-03 09:49:10 -07:00
parent ee8a88d062
commit 1e6af8ad8f

View File

@@ -82,7 +82,7 @@ export const authSignupServiceFactory = ({
await smtpService.sendMail({
template: SmtpTemplates.EmailVerification,
subjectLine: "Infisical confirmation code",
recipients: [email],
recipients: [user.email as string],
substitutions: {
code: token
}