@mxraven/mail - v0.2.0
    Preparing search index...

    Interface RawEmail

    Time-limited access to the raw RFC 822 message.

    Use fetchRawEmail to download the content.

    interface RawEmail {
        access_token: string;
        content_type?: string;
        expires_at_utc?: number;
        sha256_hex?: string;
        size_bytes?: number;
        token_type?: string;
        url: string;
    }
    Index
    access_token: string

    The bearer token for the download URL. Treat it as a secret and do not log it.

    content_type?: string

    The parsed message media type.

    expires_at_utc?: number

    The Unix time, in seconds, when the token expires.

    sha256_hex?: string

    The lowercase hex SHA-256 of the raw message bytes.

    size_bytes?: number

    The raw message size.

    token_type?: string

    The authorization scheme, normally Bearer.

    url: string

    The message download URL.