1
1
mirror of https://github.com/go-gitea/gitea synced 2025-12-07 05:18:29 +00:00

upgrade go mail to 0.7.2 and fix the bug (#35833)

patch from
https://github.com/wneessen/go-mail/issues/504#issuecomment-3477890515.
Thanks to @wneessen
This commit is contained in:
Lunny Xiao
2025-11-03 11:32:45 -08:00
committed by GitHub
parent 685c8c314f
commit 17a6a2bab1
3 changed files with 4 additions and 4 deletions

View File

@@ -128,7 +128,7 @@ func (s *SMTPSender) Send(from string, to []string, msg io.WriterTo) error {
return fmt.Errorf("failed to issue MAIL command: %w", err)
}
} else {
if err = client.Mail(from); err != nil {
if err = client.Mail(fmt.Sprintf("<%s>", from)); err != nil {
return fmt.Errorf("failed to issue MAIL command: %w", err)
}
}