MailCore を使用してメールの本文を取得しようとしていますが、常に空です。私のコードは
CTCore *folder = [[CTCorefolder alloc] initWithPath:@"INBOX" inAccount:account];
for( CTCoreMessage *msg in [folder messageObjectsFromIndex : 0 toIndex:10] ){
if([msg.subject isEqualToString:@"test")]){
// no pb here, it find the good Mail
NSLog(@"Message Body length : %d", msg.body.length);
// here the length is 0 and the body is : ""
}
}
「msg.HtmlBody」のように本文を取得する方法は他にもありますが、これも空です。ただし、Firefox では、空ではない本文が表示されます。どうすればいいですか?