๐Ÿ“ง Temporary Email

Create disposable business-grade email inboxes with full send/receive, forwarding rules, webhook notifications, and auto-expiration. Protect your real email and streamline testing workflows.

What Is Temporary Email?

Temporary Email gives you real, functional email inboxes that auto-expire after a set time. Unlike throwaway email services, these are business-grade inboxes with full send and receive capability. Perfect for:

How It Works

  1. Navigate to Temporary Email in your 25cent.cloud dashboard
  2. Click "Create Inbox" and choose a custom name or get a random address
  3. Set expiration time (1 hour to 30 days) and configure options
  4. Use your inbox at [email protected]
  5. Inbox auto-expires and all emails are permanently deleted

Pricing

1 quarter per inbox (25ยข). The base creation fee covers 1 hour. Extend at any time for 1 quarter per additional 24 hours. No per-email fees, no storage charges.

Features

Feature Description
Send & Receive Full email functionality โ€” send, receive, reply, and forward from your temp address
Custom Names Choose your inbox name (e.g., [email protected]) or get a random one
Forwarding Rules Auto-forward matching emails to your real inbox based on sender, subject, or content
Webhooks POST incoming email data to your API endpoint in real-time โ€” perfect for automation
Attachment Support Send and receive attachments up to 25MB per email
Auto-Expiration Inboxes and all emails are permanently purged after expiry โ€” zero residual data

API Usage

POST /api/temp-email/inboxes
Authorization: Bearer YOUR_TOKEN
Content-Type: application/json

{
  "name": "test-project",
  "duration": 24,
  "forwardTo": "[email protected]",
  "webhookUrl": "https://myapp.com/hooks/email"
}

Response:

{
  "inboxId": "te_xyz789",
  "address": "[email protected]",
  "expiresAt": "2026-03-01T14:00:00Z",
  "cost": 1,
  "status": "active"
}

Reading Emails

GET /api/temp-email/inboxes/te_xyz789/messages
Authorization: Bearer YOUR_TOKEN

// Returns array of emails with from, to, subject, body, attachments, receivedAt

Use Cases

Security

โ† Back to Advanced Guides