Values.MessageSourceRepresents the email message that you're sending. The Message object consists of a subject line and a message body.
type nonrec t = {subject : Content.t;The subject line of the email. The subject line can only contain 7-bit ASCII characters. However, you can specify non-ASCII characters in the subject line by using encoded-word syntax, as described in RFC 2047.
*)body : Body.t;The body of the message. You can specify an HTML version of the message, a text-only version of the message, or both.
*)headers : MessageHeaderList.t option;The list of message headers that will be added to the email message.
*)attachments : AttachmentList.t option;The List of attachments to include in your email. All recipients will receive the same attachments.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of
(string
* [> `Blob of RawAttachmentData.t
| `Enum of string
| `String of MessageHeaderName.t ])
list ]
list
| `Structure of
(string
* [> `String of MessageData.t
| `Structure of (string * [> `String of MessageData.t ]) list ])
list ])
list ]