Module Values.EmailTemplateContentSource

The content of the email, composed of a subject line, an HTML part, and a text-only part.

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

    The subject line of the email.

    *)
  2. text : EmailTemplateText.t option;
    (*

    The email body that will be visible to recipients whose email clients do not display HTML.

    *)
  3. html : EmailTemplateHtml.t option;
    (*

    The HTML body of the email.

    *)
}
Sourceval make : ?subject:??? -> ?text:??? -> ?html:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EmailTemplateSubject.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