nylas
    Preparing search index...

    Interface CleanMessagesRequest

    Interface representing the request to clean a message.

    interface CleanMessagesRequest {
        ignoreImages?: boolean;
        ignoreLinks?: boolean;
        ignoreTables?: boolean;
        imagesAsMarkdown?: boolean;
        messageId: string[];
        removeConclusionPhrases?: boolean;
    }
    Index

    Properties

    ignoreImages?: boolean

    If true, removes images from the email message.

    ignoreLinks?: boolean

    If true, removes link-related tags () from the email message while keeping the text.

    ignoreTables?: boolean

    If true, removes table-related tags (

    , ) from the email message while keeping rows.

    imagesAsMarkdown?: boolean

    If true, converts images in the email message to Markdown.

    messageId: string[]

    IDs of the email messages to clean.

    removeConclusionPhrases?: boolean

    If true, removes phrases such as "Best" and "Regards" in the email message signature.

    , ,