Module Values.EmailMessageTemplateContentSource

The content of the message template that applies to the email channel subtype.

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

    The subject line, or title, to use in email messages.

    *)
  2. body : EmailMessageTemplateContentBody.t option;
    (*

    The body to use in email messages.

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

    The email headers to include in email messages.

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