50 lines
1.5 KiB
Objective-C
50 lines
1.5 KiB
Objective-C
//
|
|
// 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 <Foundation/Foundation.h>
|
|
|
|
@class MCOMessageHeader;
|
|
@class MCOAbstractPart;
|
|
|
|
@interface MCOAbstractMessage : NSObject <NSCopying>
|
|
|
|
/** 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;
|
|
|
|
/** All attachments in the message.
|
|
It will return an array of MCOIMAPPart for MCOIMAPMessage.
|
|
It will return an array of MCOAttachment for MCOMessageParser.
|
|
It will return an array of MCOAttachment for MCOMessageBuilder. */
|
|
- (NSArray * /* MCOAbstractPart */) attachments;
|
|
|
|
/** All image attachments included inline in the message through cid: URLs.
|
|
It will return an array of MCOIMAPPart for MCOIMAPMessage.
|
|
It will return an array of MCOAttachment for MCOMessageParser.
|
|
It will return an array of MCOAttachment for MCOMessageBuilder. */
|
|
- (NSArray * /* MCOAbstractPart */) htmlInlineAttachments;
|
|
|
|
/**
|
|
Returns parts required to render the message as plain text or html.
|
|
This does not include inline images and attachments, but only the text content
|
|
*/
|
|
- (NSArray *) requiredPartsForRendering;
|
|
|
|
@end
|
|
|
|
#endif
|