fix: OTP email subject 'Your ExpenseFlow OTP' → 'Your ReceiptNext OTP'

This commit is contained in:
Claus Lohmar 2026-06-03 08:01:00 +00:00
parent e547eee57f
commit c815e022b5

View file

@ -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)