0

我正在尝试使用 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上我可以看到不是空的身体。我应该怎么做 ?

4

1 回答 1

1

您必须调用fetchBody每条消息才能从服务器检索它。

于 2012-05-02T14:11:50.737 回答