Module Values.CreateEmailTemplateRequestSource

Represents a request to create an email template. For more information, see the Amazon SES Developer Guide.

Sourcetype nonrec t = {
  1. templateName : EmailTemplateName.t;
    (*

    The name of the template.

    *)
  2. templateContent : EmailTemplateContent.t;
    (*

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

    *)
  3. tags : TagList.t option;
    (*

    An array of objects that define the tags (keys and values) to associate with the email template.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> templateName:EmailTemplateName.t -> templateContent:EmailTemplateContent.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of EmailTemplateName.t | `Structure of (string * [> `String of EmailTemplateSubject.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