5 lines
149 B
Swift
5 lines
149 B
Swift
public enum SMTPSecurity: String, Sendable, Codable {
|
|
case ssl // implicit TLS, port 465
|
|
case starttls // upgrade after connect, port 587
|
|
}
|