EmailScheduler/MailCore.framework/Versions/A/Headers/MCMessageBuilder.h
2014-09-13 17:13:32 -05:00

69 lines
2.1 KiB
C++

#ifndef MAILCORE_MCMESSAGEBUILDER_H
#define MAILCORE_MCMESSAGEBUILDER_H
#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCAbstractMessage.h>
#ifdef __cplusplus
namespace mailcore {
class Attachment;
class HTMLRendererTemplateCallback;
class MessageBuilder : public AbstractMessage {
public:
MessageBuilder();
virtual ~MessageBuilder();
virtual void setHTMLBody(String * htmlBody);
virtual String * htmlBody();
virtual void setTextBody(String * textBody);
virtual String * textBody();
virtual void setAttachments(Array * /* Attachment */ attachments);
virtual Array * /* Attachment */ attachments();
virtual void addAttachment(Attachment * attachment);
// attachments (usually images) that are included in HTML.
// a Content-ID should be assigned to these part to be able to reference
// them in the HTML using a cid: URL.
virtual void setRelatedAttachments(Array * /* Attachment */ attachments);
virtual Array * /* Attachment */ relatedAttachments();
virtual void addRelatedAttachment(Attachment * attachment);
// When boundary needs to be prefixed (to go through spam filters).
virtual void setBoundaryPrefix(String * boundaryPrefix);
virtual String * boundaryPrefix();
virtual Data * data();
virtual String * htmlRendering(HTMLRendererTemplateCallback * htmlCallback = NULL);
virtual String * htmlBodyRendering();
virtual String * plainTextRendering();
virtual String * plainTextBodyRendering(bool stripWhitespace);
public: // subclass behavior
MessageBuilder(MessageBuilder * other);
virtual String * description();
virtual Object * copy();
private:
String * mHTMLBody;
String * mTextBody;
Array * /* Attachment */ mAttachments;
Array * /* Attachment */ mRelatedAttachments;
String * mBoundaryPrefix;
void init();
Data * dataAndFilterBcc(bool filterBcc);
};
};
#endif
#endif