Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Swift 2 Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(Swift 2) Process Large POP3 Mailbox

Demonstrates how to read email from a mailbox that may contain a large number of emails.

Chilkat Downloads for the Swift Programming Language

MAC OS X (Cocoa) Objective-C/Swift Libs

iOS Objective-C/Swift Libs

func chilkatTest() {
    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    let mailman = CkoMailMan()

    mailman.MailHost = "pop.example.com"

    mailman.PopUsername = "myLogin"
    mailman.PopPassword = "myPassword"

    mailman.MailPort = 995
    mailman.PopSsl = true

    // Get the list of UIDLs for all emails in the mailbox.
    var sa: CkoStringArray? = mailman.GetUidls()
    if mailman.LastMethodSuccess == false {
        print("\(mailman.LastErrorText)")
        return
    }

    var i: Int
    var numEmails: Int = sa!.Count.intValue
    if numEmails == 0 {
        print("Mailbox is empty")
        return
    }

    var chunkSize: Int = 6

    // Download the emails in chunks of 6 emails each.
    var chunkBeginIdx: Int = 0
    var chunkEndIdx: Int = chunkSize - 1
    if chunkEndIdx >= numEmails {
        chunkEndIdx = numEmails - 1
    }

    let saChunk = CkoStringArray()
    while (chunkBeginIdx < numEmails) {

        print("\(chunkBeginIdx) to \(chunkEndIdx)")

        // Build a chunk of UIDLs.
        saChunk.Clear()
        for i = chunkBeginIdx; i <= chunkEndIdx; i++ {
            saChunk.Append(sa!.GetString(i))
        }

        // Log the UIDLs in this chunk...
        var chunkStr: String? = saChunk.SaveToText()
        print("\(chunkStr!)")

        // Download this chunk of email from the POP3 server.
        var bundle: CkoEmailBundle? = mailman.FetchMultiple(saChunk)
        if mailman.LastMethodSuccess == false {
            print("\(mailman.LastErrorText)")
            return
        }

        print("Downloaded \(bundle!.MessageCount.intValue) emails.")
        print("----")

        // Process the bundle...
        // (your application's processing code goes here...)

        bundle = nil

        // Get the next chunk...
        chunkBeginIdx = chunkBeginIdx + chunkSize
        chunkEndIdx = chunkEndIdx + chunkSize
        if chunkEndIdx >= numEmails {
            chunkEndIdx = numEmails - 1
        }

    }

    sa = nil

}

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.