CreateDraftEmailMessageInput

data class CreateDraftEmailMessageInput(val rfc822Data: ByteArray, val senderEmailAddressId: String)

Input object containing information required to save a draft email message.

Parameters

senderEmailAddressId

String Identifier of the EmailAddress being used to send the email. The identifier must match the identifier of the address of the from field in the RFC 6854 data.

Constructors

Link copied to clipboard
constructor(rfc822Data: ByteArray, senderEmailAddressId: String)

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int

Properties

Link copied to clipboard

ByteArray Email message data formatted under the RFC-6854 (supersedes RFC 822) (https://tools.ietf.org/html/rfc6854) standard. Some further rules (beyond RFC 6854) must also be applied to the data:

Link copied to clipboard