aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPMessageRenderingOperation.h
blob: 2c7f56d596e9d5bc1819805ebfa26cb4c3f9ea3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
//  MCOIMAPMessageRenderingOperation.h
//  mailcore2
//
//  Created by Paul Young on 07/07/2013.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef MAILCORE_MCOIMAPMESSAGERENDERINGOPERATION_H

#define MAILCORE_MCOIMAPMESSAGERENDERINGOPERATION_H

#import <MailCore/MCOIMAPBaseOperation.h>

/**
 The class is used to get the HTML string of a message.
 */

@interface MCOIMAPMessageRenderingOperation : MCOIMAPBaseOperation

/**
 Starts the asynchronous operation.
 
 @param completionBlock Called when the operation is finished.
 
 - On success `error` will be nil and `htmlString` will contain the message
 
 - On failure, `error` will be set and `htmlString` will be nil
 */

- (void) start:(void (^)(NSString * htmlString, NSError * error))completionBlock;

@end

#endif