package mrmime

  1. Overview
  2. Docs
Mr. MIME

Install

dune-project
 Dependency

Authors

Maintainers

Sources

mrmime-v0.5.0.tbz
sha256=0ac119fbcf49e66d2e13dec3cc23109be03cbd7b9f7f868ab1afb3eb3bf2c4e4
sha512=3f047fea13792415317ca5e3ba26a5ca8761662de57937a3b40ae590a0d5a82da645118472fc25ff8568b6615587264ae0c410adf39ae0498492e9a0dfa6695e

doc/mrmime/Mrmime/Content_encoding/index.html

Module Mrmime.Content_encodingSource

Content-Transfer-Encoding value

Sourcetype t = [
  1. | `Bit7
  2. | `Bit8
  3. | `Binary
  4. | `Quoted_printable
  5. | `Base64
  6. | `Ietf_token of string
  7. | `X_token of string
]

Type for standard mechanism for encoding.

Basic encodings.

Sourceval bit8 : t
Sourceval bit7 : t
Sourceval binary : t
Sourceval quoted_printable : t
Sourceval base64 : t
Sourceval default : t

An encoding type of 7bit requires that the body is already in a 7bit mail-ready representation. This is the default value.

Sourceval of_string : string -> (t, [> Rresult.R.msg ]) result

of_string x is the standard mechanism x. If x is an invalid mechanism, of_string returns an error.

Equals.

Sourceval equal : t -> t -> bool

Equal function of t.

Pretty-printers.

Sourceval pp : t Fmt.t

Pretty-printer for t.

Decoder of Content-Encoding's value.

Sourcemodule Decoder : sig ... end

Encoder of Content-Encoding's value.

Sourcemodule Encoder : sig ... end