Module Values_1.InboundRawMessageSource

Information about the raw email body content.

Sourcetype nonrec t = {
  1. subject : InboundSubject.t;
    (*

    The email subject.

    *)
  2. body : Values_0.Body.t;
    (*

    The email message body.

    *)
  3. contentType : EmailMessageContentType.t;
    (*

    Type of content, that is, text/plain or text/html.

    *)
  4. headers : EmailHeaders.t option;
    (*

    Headers present in inbound email.

    *)
}
Sourceval context_ : string
Sourceval make : ?headers:??? -> subject:InboundSubject.t -> body:Values_0.Body.t -> contentType:EmailMessageContentType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `Enum of string ] * [> `String of EmailHeaderValue.t ]) list | `String of InboundSubject.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t