如何使用mailcore2在收件箱邮件中获取邮件发件人配置文件图像

时间:2015-07-03 12:53:25

标签: ios iphone mailcore2

我正在使用mailcore2做iPhone移动应用程序。在此应用程序中,我需要在收到收件箱邮件时获取邮件发件人配置文件图像或发件人用户图像。我正在使用以下代码。

MCOIMAPSession *session = [[MCOIMAPSession alloc] init];
[session setHostname:@"imap.gmail.com"];
[session setPort:993];
[session setUsername:@"ADDRESS@gmail.com"];
[session setPassword:@"123456"];
[session setConnectionType:MCOConnectionTypeTLS];

MCOIMAPMessagesRequestKind requestKind = MCOIMAPMessagesRequestKindHeaders;
NSString *folder = @"INBOX";
MCOIndexSet *uids = [MCOIndexSet indexSetWithRange:MCORangeMake(1, UINT64_MAX)];

MCOIMAPFetchMessagesOperation *fetchOperation = [session fetchMessagesByUIDOperationWithFolder:folder requestKind:requestKind uids:uids];

[fetchOperation start:^(NSError * error, NSArray * fetchedMessages, MCOIndexSet * vanishedMessages) {
    //We've finished downloading the messages!

    //Let's check if there was an error:
    if(error) {
        NSLog(@"Error downloading message headers:%@", error);
    }

    //And, let's print out the messages...
    NSLog(@"The post man delivereth:%@", fetchedMessages);
}];

enter image description here

你们中的任何人都为此分享了解决方案。如何使用MailCore2 MCOIMAPSession或任何其他解决方案获取发件人配置文件图像。

先谢谢。

0 个答案:

没有答案