Member Junction
    Preparing search index...
    type GetMessageMessage = {
        Body: string;
        CreatedAt?: Date;
        ExternalSystemRecordID?: string;
        From: string;
        LastModifiedAt?: Date;
        ReceivedAt?: Date;
        ReplyTo?: string[];
        SentAt?: Date;
        Subject?: string;
        ThreadID?: string;
        To: string;
    }
    Index

    Properties

    Body: string
    CreatedAt?: Date

    Date and times associated with the message

    ExternalSystemRecordID?: string
    From: string
    LastModifiedAt?: Date
    ReceivedAt?: Date
    ReplyTo?: string[]

    In some providers, such as MS Graph, replies can be sent to multiple other recipients rather than just the original sender

    SentAt?: Date
    Subject?: string
    ThreadID?: string

    The ID of the thread the message belongs to

    To: string