aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPMessageRenderingOperation.h
blob: 8a2924c8c4c2b107f4299a28a135acc4d07aee10 (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
36
37
//
//  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.
 */

NS_ASSUME_NONNULL_BEGIN
@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 * __nullable htmlString, NSError * __nullable error))completionBlock;

@end
NS_ASSUME_NONNULL_END

#endif