sitemap.xml llms.txt
Skip to main content

Email Entities

These entities are used by the Email adapter.

Encoding enum

Defines the supported encoding formats.

Values

  • HEX: Data is encoded in hexadecimal format.
  • BASE_64: Data is encoded in Base64 format.

Attachment interface

The Attachment interface defines the structure of an attachment object, including its encoding, raw data, filename, and MIME type.

Properties

  • encoding (Encoding): The encoding format used for the attachment data. See ENCODING values.
  • data (string): The encoded attachment content.
  • name (string): The filename of the attachment.
  • contentType (string): The MIME type of the attachment.