From c815e022b584798240f8778de6e4fb390c381a55 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Wed, 3 Jun 2026 08:01:00 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20OTP=20email=20subject=20'Your=20ExpenseF?= =?UTF-8?q?low=20OTP'=20=E2=86=92=20'Your=20ReceiptNext=20OTP'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/email/smtp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/email/smtp.go b/internal/email/smtp.go index 421392a..cc6da2c 100644 --- a/internal/email/smtp.go +++ b/internal/email/smtp.go @@ -62,7 +62,7 @@ func NewSender(host, port, user, pass, from string) *Sender { // SendOTP sends a plain-text OTP verification email to the given recipient. // The email contains a standard subject line and the 6-digit verification code. func (s *Sender) SendOTP(to, code string) error { - subject := "Your ExpenseFlow OTP" + subject := "Your ReceiptNext OTP" body := fmt.Sprintf("Your verification code is: %s", code) msg := buildPlainMessage(s.from, to, subject, body)