diff --git a/conn.go b/conn.go index 3fdf0f8..eb328aa 100644 --- a/conn.go +++ b/conn.go @@ -1173,7 +1173,7 @@ func toSMTPStatus(err error) (code int, enchCode EnhancedCode, msg string) { if smtperr, ok := err.(*SMTPError); ok { return smtperr.Code, smtperr.EnhancedCode, smtperr.Message } else { - return 554, EnhancedCode{5, 0, 0}, "Error: transaction failed, blame it on the weather: " + err.Error() + return 554, EnhancedCode{5, 0, 0}, "Error: transaction failed: " + err.Error() } }