Module Values.EmailSettingsSource

The configuration for the email sent when an app user forgets their password.

Sourcetype nonrec t = {
  1. emailMessage : string option;
    (*

    The contents of the email message.

    *)
  2. emailSubject : string option;
    (*

    The contents of the subject line of the email message.

    *)
}
Sourceval make : ?emailMessage:??? -> ?emailSubject:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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