You can search for identifiers within the package.
in-package search v0.2.0
type body =
| Text of string
| Html of string
| Mixed of string * string * string option
type t = {
sender : string;
recipients : string list;
subject : string;
body : body;
}
val make : sender:string -> recipient:string -> subject:string -> body:body -> t
Generate a new email record to be sent to a single recipient.