Module Cephalopod_models.Com_Atproto_Admin_SendEmail

lexicon "com.atproto.admin.sendEmail"

def main

type main_input = {
  1. recipientDid : string;
    (*

    format: "Did"

    *)
  2. content : string;
  3. subject : string option;
  4. senderDid : string;
    (*

    format: "Did"

    *)
  5. comment : string option;
    (*

    Additional comment by the sender that won't be used in the email itself but helpful to provide more context for moderators/reviewers

    *)
}
val show_main_input : main_input -> Ppx_deriving_runtime.string
val main_input_to_value : main_input -> Cephalopod_dasl.Value.t
type main_output = {
  1. sent : bool;
}
val show_main_output : main_output -> Ppx_deriving_runtime.string
val main_output_of_value : main_output Cephalopod_dasl.Value.Util.conv
val main_output_to_value : main_output -> Cephalopod_dasl.Value.t
val main : (unit, main_input, main_output, unit) Base.procedure

Send email to a user's account email address.