File

src/gsuite/mail/message-header.model.ts

Description

Represents the entire message payload, it will contain the standard RFC 2822 email headers such as To, From, and Subject.

Properties

name
name: void
Type : void

The name of the header before the : separator. For example, To.

value
value: void
Type : void

The value of the header after the : separator. For example, someuser@example.com.

export interface MessageHeader {
    /**
     * The name of the header before the : separator. For example, To.
     */
    name: string;
    /**
     * The value of the header after the : separator. For example, someuser@example.com.
     */
    value: string;
}

results matching ""

    No results matching ""