Objective-C
Objective-C
Get IMAP Attachment Filenames
See more IMAP Examples
Demonstrates the Chilkat Imap.GetMailAttachFilename method, which returns the filename of an attachment. The first argument is the Email and the second is the zero-based attachment index. This example fetches only the message headers and lists the attachment filenames.
Background: This method reads the filename from
ckx-imap-* metadata, so it works on a header-only email even though the attachment bodies have not been downloaded. That is exactly what a mail client needs to render the paperclip list — the names of the attached files — before the user decides to download any of them.Chilkat Objective-C Downloads
#import <CkoImap.h>
#import <CkoEmail.h>
#import <NSString.h>
BOOL success = NO;
// Demonstrates the Imap.GetMailAttachFilename method, which returns the filename of an
// attachment. The 1st argument is the Email and the 2nd is the zero-based attachment index.
CkoImap *imap = [[CkoImap alloc] init];
imap.Ssl = YES;
imap.Port = [NSNumber numberWithInt:993];
success = [imap Connect: @"imap.example.com"];
if (success == NO) {
NSLog(@"%@",imap.LastErrorText);
return;
}
success = [imap Login: @"user@example.com" password: @"myPassword"];
if (success == NO) {
NSLog(@"%@",imap.LastErrorText);
return;
}
success = [imap SelectMailbox: @"Inbox"];
if (success == NO) {
NSLog(@"%@",imap.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.
BOOL headersOnly = YES;
BOOL useUid = NO;
int seqNum = 1;
CkoEmail *email = [[CkoEmail alloc] init];
success = [imap FetchEmail: headersOnly msgId: seqNum bUid: useUid email: email];
if (success == NO) {
NSLog(@"%@",imap.LastErrorText);
return;
}
// Loop over the attachments and print each filename.
int numAttach = [[imap GetMailNumAttach: email] intValue];
NSLog(@"%@%d",@"Attachments: ",numAttach);
int i;
for (i = 0; i <= numAttach - 1; i++) {
// GetMailAttachFilename returns a string, so assign it to a string variable.
NSString *fname = [imap GetMailAttachFilename: email attachIndex: [NSNumber numberWithInt: i]];
if (imap.LastMethodSuccess == NO) {
NSLog(@"%@",imap.LastErrorText);
return;
}
NSLog(@"%@",fname);
}
success = [imap Disconnect];
if (success == NO) {
NSLog(@"%@",imap.LastErrorText);
return;
}