// // MCOAbstractMessage.h // mailcore2 // // Created by DINH Viêt Hoà on 3/10/13. // Copyright (c) 2013 MailCore. All rights reserved. // #ifndef __MAILCORE_MCOABSTRACTMESSAGE_H_ #define __MAILCORE_MCOABSTRACTMESSAGE_H_ #import @class MCOMessageHeader; @class MCOAbstractPart; @interface MCOAbstractMessage : NSObject // Header of the message. @property (nonatomic, strong) MCOMessageHeader * header; // Returns the part with the given Content-ID. - (MCOAbstractPart *) partForContentID:(NSString *)contentID; // Returns the part with the given unique identifier. - (MCOAbstractPart *) partForUniqueID:(NSString *)uniqueID; - (NSArray *) attachments; - (NSArray *) htmlInlineAttachments; @end #endif