@servicenow/sdk - v4.7.0
    Preparing search index...
    type Digest = {
        allow?: boolean;
        default?: boolean;
        defaultInterval?: string | Record<"sys_email_digest_interval">;
        from?: string;
        html?: string;
        replyTo?: string;
        separatorHtml?: string;
        separatorText?: string;
        subject?: string;
        template?: string | Record<"sysevent_email_template">;
        text?: string;
        type?: "single" | "multiple";
    }
    Index

    Properties

    allow?: boolean

    Whether to allow users to receive this notification as a digest

    false
    
    default?: boolean

    Whether digest mode is enabled by default for this notification

    false
    
    defaultInterval?: string | Record<"sys_email_digest_interval">

    Default time interval for digest delivery

    from?: string

    Email address to use as the sender for digest emails

    html?: string

    HTML content for digest emails

    replyTo?: string

    Email address for replies to digest emails

    separatorHtml?: string

    HTML separator between notifications in a digest

    '<br><hr><br>'
    
    separatorText?: string

    Text separator between notifications in a digest

    '\n--------------------------------------------------------------------------------\n'
    
    subject?: string

    Subject line for digest emails

    template?: string | Record<"sysevent_email_template">

    Email template to use for digest emails

    text?: string

    Plain text content for digest emails

    type?: "single" | "multiple"

    Type of digest: single (one notification per digest) or multiple (combine multiple notifications)

    'single'