Values_1.InboundRawMessageSourceInformation about the raw email body content.
type nonrec t = {subject : InboundSubject.t;The email subject.
*)body : Values_0.Body.t;The email message body.
*)contentType : EmailMessageContentType.t;Type of content, that is, text/plain or text/html.
*)headers : EmailHeaders.t option;Headers present in inbound email.
*)}val make :
?headers:??? ->
subject:InboundSubject.t ->
body:Values_0.Body.t ->
contentType:EmailMessageContentType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `Enum of string ] * [> `String of EmailHeaderValue.t ]) list
| `String of InboundSubject.t ])
list ]