Sample code for 30+ languages & platforms
Dart Requires Chilkat v11.0.0+

IMAP Download All Email One at a Time

Demonstrates how to download every email in an IMAP mailbox one at a time as a MIME string or as an email object. (The MIME contains the full contents of the email including all attachments.)

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final imap = CkImap();

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

  // Connect to an IMAP server.
  // Use TLS
  imap.ssl = true;
  imap.port = 993;
  try {
    imap.connect('imap.example.com');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Login
  try {
    imap.login('myLogin', 'myPassword');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Select an IMAP mailbox
  try {
    imap.selectMailbox('Inbox');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Once the mailbox is selected, the NumMessages property
  // will contain the number of messages in the mailbox.
  // You may loop from 1 to NumMessages to
  // fetch each message by sequence number.

  final bUid = false;
  var mimeStr = '';
  final n = imap.numMessages;
  for (var i = 1; i <= n; i++) {

    // Download the email by sequence number.
    mimeStr = imap.fetchSingleAsMime(i, bUid);

    // ... your application may process each MIME string...
  }

  // An alternative is to download each email in the form of an
  // email object, like this:
  final email = CkEmail();
  for (var i = 1; i <= n; i++) {

    // Download the email by sequence number.
    imap.fetchEmail(false, i, bUid, email);

    // ... your application may process the email object...
  }

  // Disconnect from the IMAP server.
  imap.disconnect();
}