# Sam Ragsdale Email Sender (x402)

> Sam Ragsdale Email Sender (x402) is a paid API for AI agents from www.samragsdale.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Sends an email from x402@samragsdale.com to a specified recipient with a custom subject and body, paid via x402 protocol at $1 USDC per send.

## Facts

- Endpoint: POST https://www.samragsdale.com/api/x402/email
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sam-ragsdale-email-sender-x402-31dd1773
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Orb4x2v8GNLcuQA00BtwE

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sam-ragsdale-email-sender-x402-31dd1773 -d '<json body>'
```

Example prompt: Send an email to alice@example.com with the subject 'Project Update' and body 'Hi Alice, just wanted to let you know the project is on track for delivery by Friday. Best, Sam' — pay with x402 from x402@samragsdale.com.

## When to prefer this

Use this endpoint when you need to send a single outbound email programmatically via the x402 micropayment protocol and are comfortable paying $1 USDC per send. It is the standard (non-priority) send option that does not CC the sender. Prefer over the priority variant when CC confirmation is not needed, and over a calendar booking endpoint when the goal is asynchronous message delivery rather than scheduling.

## Known failure modes

- Invalid recipient email address format — returns success: false with an error message
- Subject or body exceeds character limits (subject >200 chars, body >10,000 chars) — validation error
- Payment failure or insufficient USDC balance — x402 payment rejection before the request reaches the handler
- Empty subject or body — required field validation error
- Network or SMTP delivery failure — success: false with delivery error message

## How this service works

Send an email from x402@samragsdale.com

## Output

Returns a JSON object with a boolean 'success' field, a 'message' string describing the outcome, and optionally an 'emailId' string identifying the sent email.

## Example request

```json
{
 "body": "This is a test email to verify the email API is functioning correctly.",
 "subject": "Test Email",
 "recipient": "zero-qa@agentmail.to"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "body",
  "subject",
  "recipient"
 ],
 "properties": {
  "body": {
   "type": "string",
   "description": "Body content of the email (1-10,000 characters, HTML supported)"
  },
  "subject": {
   "type": "string",
   "description": "Subject line of the email (1-200 characters)"
  },
  "recipient": {
   "type": "string",
   "description": "Email address of the recipient"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "success",
  "message"
 ],
 "properties": {
  "emailId": {
   "type": "string"
  },
  "message": {
   "type": "string"
  },
  "success": {
   "type": "boolean"
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sam-ragsdale-email-sender-x402-31dd1773/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.samragsdale.com](https://www.zero.xyz/host/www.samragsdale.com/llms.txt)
