src/gsuite/mail/message-header.model.ts
Represents the entire message payload, it will contain the standard RFC 2822 email headers such as To, From, and Subject.
name |
name: |
Type : void
|
Defined in src/gsuite/mail/message-header.model.ts:9
|
The name of the header before the : separator. For example, To. |
value |
value: |
Type : void
|
Defined in src/gsuite/mail/message-header.model.ts:13
|
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;
}