@vectorize-io/vectorize-client
    Preparing search index...

    Interface GMAILConfig

    Configuration for Gmail connector

    GMAILConfig

    interface GMAILConfig {
        cc?: string;
        ccFilterType: string;
        endDate?: Date;
        from?: string;
        fromFilterType: string;
        includeAttachments?: boolean;
        labelFilterType: string;
        labelIds?: string;
        maxResults?: number;
        messagesToFetch?: GMAILConfigMessagesToFetchEnum;
        startDate?: Date;
        subject?: string;
        subjectFilterType: string;
        to?: string;
        toFilterType: string;
    }
    Index

    Properties

    cc?: string

    CC Address Filter. Only include emails with these addresses in CC field. Example: Add CC email(s)

    GMAILConfig

    ccFilterType: string

    GMAILConfig

    endDate?: Date

    End Date. Only include emails sent before this date (exclusive). Format: YYYY-MM-DD.. Example: e.g., 2024-01-31

    GMAILConfig

    from?: string

    From Address Filter. Only include emails from these senders. Example: Add sender email(s)

    GMAILConfig

    fromFilterType: string

    GMAILConfig

    includeAttachments?: boolean

    Include Attachments. Include email attachments in the processed content

    GMAILConfig

    labelFilterType: string

    GMAILConfig

    labelIds?: string

    Label Filters. Include emails with these labels. Example: e.g., INBOX, IMPORTANT, CATEGORY_SOCIAL

    GMAILConfig

    maxResults?: number

    Maximum Results. Leave blank for no limit, or specify a maximum number. Example: Enter maximum number of threads to retrieve (leave blank for no limit)

    GMAILConfig

    Messages to Fetch. Select which categories of messages to include in the import.

    GMAILConfig

    startDate?: Date

    Start Date. Only include emails sent after this date (exclusive). Format: YYYY-MM-DD.. Example: e.g., 2024-01-01

    GMAILConfig

    subject?: string

    Subject Filter. Include emails with these keywords in the subject line. Example: Add subject keywords

    GMAILConfig

    subjectFilterType: string

    GMAILConfig

    to?: string

    To Address Filter. Only include emails sent to these recipients. Example: Add recipient email(s)

    GMAILConfig

    toFilterType: string

    GMAILConfig