Member Junction
    Preparing search index...
    type GetMessagesContextDataParams = {
        Email?: string;
        Filter?: string;
        MarkAsRead?: boolean;
        ReturnAsPlainText?: boolean;
        Top?: number;
    }
    Index

    Properties

    Email?: string

    The email address of the service account to use. If not provide, defaults to the AZURE_ACCOUNT_EMAIL config variable

    Filter?: string

    Filter to use in the MS Graph request to fetch messages. Defaults to fetching messages not marked as read.

    MarkAsRead?: boolean

    If true, messages will be marked as read after being processed

    ReturnAsPlainText?: boolean

    If true, messages will be returned with the body stripped of HTLM tags

    Top?: number

    Number of messages to return, defaults to 10.