Sample code for 30+ languages & platforms
Swift

Send a Raw POP3 Command

See more POP3 Examples

Demonstrates the Chilkat MailMan.Pop3SendRawCommand method, which sends a raw command to the POP3 server and returns the server's response. The second argument specifies the charset to use if the command contains non-US-ASCII characters. This example sends the POP3 STAT command within an open session.

Background: POP3 is a simple line-based text protocol — the client sends short commands like STAT, LIST, UIDL, or RETR and the server replies with +OK or -ERR. This method is an escape hatch for issuing a command Chilkat doesn't wrap directly, or a server-specific extension. Note that the session must already be open, since a raw command assumes an authenticated connection.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    //  Demonstrates the MailMan.Pop3SendRawCommand method, which sends a raw command to the POP3
    //  server and returns the server's response.  The second argument is the charset used if the
    //  command contains non-US-ASCII characters.

    let mailman = CkoMailMan()!

    //  Configure the POP3 server connection.
    mailman.mailHost = "pop.example.com"
    mailman.mailPort = 995
    mailman.popSsl = true
    mailman.popUsername = "user@example.com"
    mailman.popPassword = "myPassword"

    success = mailman.pop3BeginSession()
    if success == false {
        print("\(mailman.lastErrorText!)")
        return
    }

    //  Send the raw POP3 STAT command, which returns the message count and maildrop size.
    var response: String? = mailman.pop3SendRawCommand(command: "STAT", charset: "us-ascii")
    if mailman.lastMethodSuccess == false {
        print("\(mailman.lastErrorText!)")
        return
    }

    print("STAT response: \(response!)")

    success = mailman.pop3EndSession()
    if success == false {
        print("\(mailman.lastErrorText!)")
        return
    }


}