Type Alias EmailBodyPartFields

EmailBodyPartFields: {
    blobId?: Id | null;
    charset?: string | null;
    cid?: string | null;
    disposition?: string | null;
    headers?: EmailHeader[];
    language?: string[] | null;
    location?: string | null;
    name?: string | null;
    partId?: string | null;
    size?: number;
    subParts?: EmailBodyPartFields[] | null;
    type?: string;
}

Type declaration

  • OptionalblobId?: Id | null
  • Optionalcharset?: string | null

    The value of the charset parameter of the Content-Type header field, if present, or null if the header field is present but not of type "text/*"

  • Optionalcid?: string | null

    The value of the Content-Id header field of the part, if present; otherwise, it's null

  • Optionaldisposition?: string | null

    The value of the Content-Disposition header field of the part, if present; otherwise, it's null

  • Optionalheaders?: EmailHeader[]
  • Optionallanguage?: string[] | null

    The list of language tags in the Content-Language header field of the part, if present

  • Optionallocation?: string | null

    The URI in the Content-Location header field of the part, if present

  • Optionalname?: string | null
  • OptionalpartId?: string | null
  • Optionalsize?: number

    uint

  • OptionalsubParts?: EmailBodyPartFields[] | null
  • Optionaltype?: string

    The value of the Content-Type header field of the part, if present; otherwise, the implicit type as per the MIME standard ("text/plain" or "message/rfc822" if inside a "multipart/digest")