fix: OTP email subject 'Your ExpenseFlow OTP' → 'Your ReceiptNext OTP'
This commit is contained in:
parent
e547eee57f
commit
c815e022b5
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue