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
- Instant Inboxes: Create a disposable email address in one click
- 1-Hour TTL: Inboxes auto-expire after 1 hour for maximum privacy
- Linked Inboxes: Connect up to 10 inboxes to your Auva Account for persistent management
- Real-Time Updates: Emails appear instantly as they arrive
- No Registration Required: Use anonymous inboxes without an account
- API Access: Create and manage inboxes programmatically
How It Works
- Visit auva.email or use the API
- A random inbox is generated (e.g.,
abc123@auva.email) - Use this email address for any sign-up or test
- Incoming emails appear in real-time in the dashboard
- 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
| Scenario | How Auva Mail Helps |
|---|---|
| Testing sign-up flows | Create a fresh inbox for each test: no clutter |
| Avoiding spam | Use a disposable email for sketchy sign-ups |
| QA & Development | Generate test inboxes programmatically via API |
| Privacy | Never expose your real email to untrusted services |
| Temporary communication | Set 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": []
}