nylas
    Preparing search index...

    Interface RuleEvaluationInput

    Interface representing the normalized data evaluated by the Rules engine.

    interface RuleEvaluationInput {
        fromAddress?: string;
        fromDomain?: string;
        fromTld?: string;
        outboundType?: RuleOutboundType;
        recipientAddresses?: string[];
        recipientDomains?: string[];
        recipientTlds?: string[];
    }
    Index

    Properties

    fromAddress?: string

    The normalized sender email address.

    fromDomain?: string

    The normalized sender domain.

    fromTld?: string

    The normalized sender top-level domain.

    outboundType?: RuleOutboundType

    Outbound send classification used during rule evaluation.

    recipientAddresses?: string[]

    Outbound recipient email addresses considered during rule evaluation.

    recipientDomains?: string[]

    Outbound recipient domains considered during rule evaluation.

    recipientTlds?: string[]

    Outbound recipient top-level domains considered during rule evaluation.