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

    Interface ScheduledDraftMessage

    The Sudo Platform SDK representation of a draft message that has been scheduled to be sent by the email service.

    ScheduledDraftMessage

    interface ScheduledDraftMessage {
        createdAt: Date;
        emailAddressId: string;
        id: string;
        owner: string;
        owners: Owner[];
        sendAt: Date;
        state: ScheduledDraftMessageState;
        updatedAt: Date;
    }
    Index

    Properties

    createdAt: Date

    Date when the scheduled message was created.

    emailAddressId: string

    The identifier of the email address associated with the message.

    id: string

    The identifier of the draft message that has been scheduled.

    owner: string

    Identifier of the user that owns the email address.

    owners: Owner[]

    List of identifiers of user/accounts associated with this email address.

    sendAt: Date

    The timestamp of when the message is scheduled to be sent.

    The current state of the scheduled message.

    updatedAt: Date

    Date when the scheduled message was last updated.