add SMTPClient module: connection layer, message formatter, public API, tests
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user