Module Values.EmailMessageTemplateContentBodySource

The body to use in email messages.

Sourcetype nonrec t = {
  1. plainText : MessageTemplateBodyContentProvider.t option;
    (*

    The message body, in plain text format, to use in email messages that are based on the message template. We recommend using plain text format for email clients that don't render HTML content and clients that are connected to high-latency networks, such as mobile devices.

    *)
  2. html : MessageTemplateBodyContentProvider.t option;
    (*

    The message body, in HTML format, to use in email messages that are based on the message template. We recommend using HTML format for email clients that render HTML content. You can include links, formatted text, and more in an HTML message.

    *)
}
Sourceval make : ?plainText:??? -> ?html:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of NonEmptyUnlimitedString.t ]) list ]) 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