@sudoplatform/sudo-email
    Preparing search index...

    Interface UpdateDraftEmailMessageInput

    Input for SudoEmailClient.updateDraftEmailMessage.

    The email address in the From field of the RFC6854 data must match either the maskAddress of the Email Mask associated with the emailMaskId property, if provided, otherwise the emailAddress of the Email Address associated with the senderEmailAddressId property.

    UpdateDraftEmailMessageInput

    interface UpdateDraftEmailMessageInput {
        emailMaskId?: string;
        id: string;
        rfc822Data: ArrayBuffer;
        senderEmailAddressId: string;
    }
    Index

    Properties

    emailMaskId?: string

    Optional identifier of the email mask associated with the draft email message.

    id: string

    The identifier of the draft email message to update.

    rfc822Data: ArrayBuffer

    Email message data formatted under the RFC 6854. This will completely replace the existing data.

    senderEmailAddressId: string

    The identifier of the email address used to send the email.