Swiftpack.co - MailCore/mailcore2 as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by MailCore.
MailCore/mailcore2 0.6.4
MailCore 2 provide a simple and asynchronous API to work with e-mail protocols IMAP, POP and SMTP. The API has been redesigned from ground up.
⭐️ 2,568
🕓 3 years ago
iOS macOS
.package(url: "https://github.com/MailCore/mailcore2.git", from: "0.6.4")

MailCore 2: Introduction

MailCore 2 provides a simple and asynchronous Objective-C API to work with the e-mail protocols IMAP, POP and SMTP. The API has been redesigned from the ground up. It features:

  • POP, IMAP and SMTP support
  • RFC822 parser and generator
  • Asynchronous APIs
  • HTML rendering of messages
  • iOS and Mac support

Build Status

Installation

Build for iOS/OSX

Read instructions for iOS/OSX.

Build for Android

Read instructions for Android.

Build for Windows

Read instructions for Windows.

Build for Linux

Read instructions for Linux.

Basic IMAP Usage

Using MailCore 2 is just a little more complex conceptually than the original MailCore. All fetch requests in MailCore 2 are made asynchronously through a queue. What does this mean? Well, let's take a look at a simple example:

  let session = MCOIMAPSession()
  
  session.hostname       = "imap.gmail.com"
  session.port           = 993
  session.username       = "[email protected]"
  session.password       = "123456"
  session.connectionType = .TLS
  
  let folder = "INBOX"
  let uids   = MCOIndexSet(range: MCORange(location: 1, length: UInt64.max))
  
  if let fetchOperation = session.fetchMessagesOperation(withFolder: folder, requestKind: .headers, uids: uids) {
    fetchOperation.start { error, fetchedMessages, vanishedMessages in
      // We've finished downloading the messages!
      
      // Let's check if there was an error
      if let error = error {
        print("Error downloading message headers: \(error.localizedDescription)")
      }
      
      // And, let's print out the messages:
      print("The post man delivereth: \(fetchedMessages.debugDescription)")
    }
  }

(You can also read an Objective-C Version)

In this sample, we retrieved and printed a list of email headers from an IMAP server. In order to execute the fetch, we request an asynchronous operation object from the MCOIMAPSession instance with our parameters (more on this later). This operation object is able to initiate a connection to Gmail when we call the start method. Now here's where things get a little tricky. We call the start function with a block, which is executed on the main thread when the fetch operation completes. The actual fetching from IMAP is done on a background thread, leaving your UI and other processing free to use the main thread.

Documentation

License

MailCore 2 is BSD-Licensed.

MailCore Supporters

GitHub

link
Stars: 2568
Last commit: 1 year ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

0.6.4
3 years ago

Added

  • Support for moveMessagesOperation to java library in Pull Request (#1749)
  • Add uidplus, acl, enable capabilities parsing in Pull Request (#1750)
  • Fix Operation Progress Listener on Android in Pull Request (#1787)
  • Fix superclass for MCONNTPDisconnectOperation in Pull Request (#1852)
  • Add type annotation to MCOIMAPFetchFoldersOperation (#1784)

Updated

  • Exclude driverkit SDK from macosx sdk version variable. in Pull Request (#1855)
  • Add Hostinger to email providers in Pull Request #1883
  • Update pod spec to resolve the unencrypted HTTP protocol warning
  • Eliminate -Wimplicit-fallthrough trigger (#1767)
  • Remove deprecated ALWAYS_SEARCH_USER_PATHS setting for iOS target (#1757)
  • Drop flags -lcrypto -lssl in target OS X

Fixed

  • Fixed memory leak
  • Enable MCOIMAPFolderStatus to be constructed by the NSObject default constructor.

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics