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

    Properties

    Body: string
    CCRecipients?: string[]

    All CC recipients of the message, normalized to bare email addresses. Optional: providers that cannot supply it leave it undefined.

    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
    ToRecipients?: string[]

    All To recipients of the message, normalized to bare email addresses. Unlike To — whose meaning is provider-specific for historical reasons (MS Graph populates it from the first reply-to address; Gmail from the raw To: header) — this is the actual recipient list as received. Optional: providers that cannot supply it leave it undefined.