EmailMessageDataProcessor

Handles the processing of email message data which includes the encoding and parsing of the email message content.

Inheritors

Functions

Link copied to clipboard
abstract fun encodeToInternetMessageData(from: String, to: List<String>, cc: List<String>? = null, bcc: List<String>? = null, subject: String? = null, body: String? = null, attachments: List<EmailAttachment>? = null, inlineAttachments: List<EmailAttachment>? = null, encryptionStatus: EncryptionStatus = EncryptionStatus.UNENCRYPTED): ByteArray

Encode an email message to a ByteArray of data.

Link copied to clipboard

Parse a ByteArray of data to an email message.