We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 697e73a commit f9b1d70Copy full SHA for f9b1d70
Sources/SwiftSMTP/Command.swift
@@ -44,8 +44,8 @@ enum Command {
44
}
45
case .authUser(let user): return user
46
case .authPassword(let password): return password
47
- case .mail(let from): return "MAIL FROM: <\(from)>"
48
- case .rcpt(let to): return "RCPT TO: <\(to)>"
+ case .mail(let from): return "MAIL FROM:<\(from)>"
+ case .rcpt(let to): return "RCPT TO:<\(to)>"
49
case .data: return "DATA"
50
case .dataEnd: return "\(CRLF)."
51
case .quit: return "QUIT"
0 commit comments