Sign in

Auva Mail

Auva Mail is Auva's privacy-first email service at auva.email. Create disposable email inboxes instantly: perfect for sign-ups, testing, or protecting your real inbox from spam.


Features


How It Works

  1. Visit auva.email or use the API
  2. A random inbox is generated (e.g., abc123@auva.email)
  3. Use this email address for any sign-up or test
  4. Incoming emails appear in real-time in the dashboard
  5. After 1 hour, the inbox and all emails are permanently deleted

Sign in with your Auva Account to link an inbox. Linked inboxes persist beyond the 1-hour TTL and can be managed from your dashboard.


Use Cases

ScenarioHow Auva Mail Helps
Testing sign-up flowsCreate a fresh inbox for each test: no clutter
Avoiding spamUse a disposable email for sketchy sign-ups
QA & DevelopmentGenerate test inboxes programmatically via API
PrivacyNever expose your real email to untrusted services
Temporary communicationSet up a quick channel that auto-cleans

Quick API Example

text
POST https://auva.email/api/inboxes
Content-Type: application/json

{
  "prefix": "test-user"    // Optional: custom prefix
}

Response:

text
{
  "id": "inbox_xyz789",
  "email": "test-user-a1b2@auva.email",
  "expiresAt": "2024-03-15T11:30:00.000Z",
  "linked": false,
  "messages": []
}