Files
2026-03-14 05:25:03 +01:00

10 lines
261 B
Swift

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
}