Headers: {
    [key: string]: string | string[] | {
        prepared: boolean;
        value: string;
    };
} | {
    key: string;
    value: string;
}[]

Represents an object or array of additional header fields. Prepared header values that are not folded or encoded by Nodemailer. This type is compatible with Headers of nodemailer.

Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.

Type declaration

  • [key: string]: string | string[] | {
        prepared: boolean;
        value: string;
    }