package email_message

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file email_message.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module Bigstring_shared = Bigstring_shared

module Email = struct
  include Email
  module Content = Email_content
  module Raw_content = Email_raw_content
  module Simple = Email_simple
end

module Email_address = Email_address1
module Email_headers = Headers
module Email_selector = Selector
module Email_wrapper = Wrapper
module Email_date = Email_date
module Mimestring = Mimestring
module Octet_stream = Octet_stream
module String_monoid = String_monoid

module Email_message_stable = struct
  module Email = struct
    include Email.Stable
    module Raw_content = Email_raw_content.Stable
    module Simple = Email_simple.Stable
  end

  module Email_address = Email_address.Stable
  module Email_wrapper = Email_wrapper.Stable
  module Email_headers = Email_headers.Stable
end

module Private = struct
  module Boundary = Boundary
  module Media_type = Media_type
  module Rfc = Rfc
  module Encoded_word = Encoded_word
end