Account Settings

Manage settings for

Add Custom Domain

DNS Configuration Required

Import Verified Domain

Use this if you already have the access code.

Create New Email

@

Catch-All Settings

API Documentation

Interact with your AnonDrop Mail account programmatically. Use your account secret key for authentication.

POST /get_emails

Retrieve and clear emails for a specific address.

// Request
{
  "address": "your_address@anondrop.net",
  "secret": "your_secret_key"
}

// Response
[
  {
    "from": "sender@example.com",
    "subject": "Hello",
    "body": "HTML Content...",
    "date": "ISO-8601 Date"
  }
]

POST /send_email

Send an email from your address.

// Request
{
  "address": "your_address@anondrop.net",
  "secret": "your_secret_key",
  "to": "recipient@example.com",
  "subject": "Hello",
  "body": "

HTML Body

", "displayName": "Optional Name" }

POST /new_address

Generate a new random email address.

// Request
{
  "custom_name": "optional-prefix" 
}

// Response
{
  "address": "prefix-freemail@anondrop.net",
  "secret": "new_secret_key"
}