public enum SMTPError: Error, Sendable { case notConnected case connectionFailed(String) case authenticationFailed(String) case recipientRejected(String) case sendFailed(String) case unexpectedResponse(code: Int, message: String) case tlsUpgradeFailed }