Module Values.EmailContentSource

Contains the subject and message of an email.

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

    The subject of the email.

    *)
  2. additionalMessage : NotificationAdditionalMessage.t option;
    (*

    The message that you want to send. The message can be up to 200 characters.

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