54ce92e280
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
261 B
Swift
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
|
|
}
|