Send email to a user's account email address.
Input
Encoding
application/jsoncomment
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
Encoding
application/jsonsent
boolean
Required
No description provided.
Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
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."
}