Backfill in-progress. Some lexicons and records may be missing or incomplete.

com.atproto.admin.sendEmail

atproto-lexicons.bsky.social

Documentation

main procedure

Send email to a user's account email address.

Input

Encodingapplication/json
comment string Optional

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

content string Required

No description provided.

recipientDid stringdid Required

A decentralized identifier (DID).

senderDid stringdid Required

A decentralized identifier (DID).

subject string Optional

No description provided.

Output

Encodingapplication/json
sent boolean Required

No description provided.

Try It

Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.

These methods interact directly with Personal Data Servers and require careful handling. Use a dedicated client or CLI tool instead.
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "recipientDid",
        "content",
        "senderDid"
      ],
      "properties": {
        "comment": {
          "type": "string",
          "description": "Additional comment by the sender that won't be used in the email itself but helpful to provide more context for moderators/reviewers"
        },
        "content": {
          "type": "string"
        },
        "subject": {
          "type": "string"
        },
        "senderDid": {
          "type": "string",
          "format": "did"
        },
        "recipientDid": {
          "type": "string",
          "format": "did"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "sent"
      ],
      "properties": {
        "sent": {
          "type": "boolean"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Send email to a user's account email address."
}

Lexicon Garden

@