1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-08-13 20:04:49 +02:00

Update error message

This commit is contained in:
Ralph Slooten
2023-06-26 17:36:13 +12:00
parent 8c295d4754
commit 70b604e028

View File

@@ -79,7 +79,7 @@ func Send(from string, to []string, msg []byte) error {
if a != nil {
if err = c.Auth(a); err != nil {
return fmt.Errorf("error authenticating: %s", err.Error())
return fmt.Errorf("error response to AUTH command: %s", err.Error())
}
}
if err = c.Mail(from); err != nil {