Dart
Dart
Get the Number of IMAP Attachments
See more IMAP Examples
Demonstrates the Chilkat Imap.GetMailNumAttach method, which returns the number of ordinary attachments on a message. The only argument is the Email. This example fetches only the headers and reports the attachment count.
Background: A header-only fetch downloads no attachment bodies, so the
Email object's own downloaded-attachment count can be 0. GetMailNumAttach instead reads the ckx-imap-numAttach metadata, giving the true count — which is what you want when building a message list that shows whether each message has attachments.Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// Demonstrates the Imap.GetMailNumAttach method, which returns the number of ordinary
// attachments on a message. The only argument is the Email.
final imap = CkImap();
imap.ssl = true;
imap.port = 993;
try {
imap.connect('imap.example.com');
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
try {
imap.login('user@example.com', 'myPassword');
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
try {
imap.selectMailbox('Inbox');
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
// Fetch only the message headers. Attachment bodies are NOT downloaded, but the ckx-imap-*
// metadata describing the attachments is present, so the attachment info methods still work.
final headersOnly = true;
final useUid = false;
final seqNum = 1;
final email = CkEmail();
try {
imap.fetchEmail(headersOnly, seqNum, useUid, email);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
final numAttach = imap.getMailNumAttach(email);
print('This message has $numAttach attachment(s).');
try {
imap.disconnect();
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
}