Module Values.CustomVerificationEmailTemplateMetadataSource

Contains information about a custom verification email template.

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

    The name of the custom verification email template.

    *)
  2. fromEmailAddress : EmailAddress.t option;
    (*

    The email address that the custom verification email is sent from.

    *)
  3. templateSubject : EmailTemplateSubject.t option;
    (*

    The subject line of the custom verification email.

    *)
  4. successRedirectionURL : SuccessRedirectionURL.t option;
    (*

    The URL that the recipient of the verification email is sent to if his or her address is successfully verified.

    *)
  5. failureRedirectionURL : FailureRedirectionURL.t option;
    (*

    The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.

    *)
}
Sourceval make : ?templateName:??? -> ?fromEmailAddress:??? -> ?templateSubject:??? -> ?successRedirectionURL:??? -> ?failureRedirectionURL:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EmailTemplateName.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