fix: typo

This commit is contained in:
Raymond
2025-06-18 11:43:53 -04:00
committed by GitHub
parent 88d4a3d298
commit 71512bdad4

View File

@@ -73,7 +73,7 @@ class EmailService(
mailer.sendMail(EmailBuilder.startingBlank()
.from(props.senderName, props.senderAddr)
.to(user.computedName, user.email)
.withSubject("Verification Your Email Address for AquaNet")
.withSubject("Verify Your Email Address for AquaNet")
.withHTMLText(confirmTemplate
.replace("{{name}}", user.computedName)
.replace("{{url}}", "https://${props.webHost}/verify?code=$token"))
@@ -93,4 +93,4 @@ class EmailService(
}
}
}
}