From 71512bdad4c0ee02d6d34a1ac3ea2a34490eb32f Mon Sep 17 00:00:00 2001 From: Raymond <101374892+raymonable@users.noreply.github.com> Date: Wed, 18 Jun 2025 11:43:53 -0400 Subject: [PATCH] fix: typo --- src/main/java/icu/samnyan/aqua/net/components/Email.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/icu/samnyan/aqua/net/components/Email.kt b/src/main/java/icu/samnyan/aqua/net/components/Email.kt index 75269b6c..21f62cfa 100644 --- a/src/main/java/icu/samnyan/aqua/net/components/Email.kt +++ b/src/main/java/icu/samnyan/aqua/net/components/Email.kt @@ -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( } } -} \ No newline at end of file +}