Anonymous Temporary Email Address:
Syncing in real-time...
Expires in: 30 Days
Note: Inboxes with no incoming messages will be deleted automatically after 15 minutes.

Inbox

0 Messages

Waiting for incoming emails...

Select or generate an email address to listen.

Select an email to read its content

Manage Custom Domains

Want to use your own domain name (e.g. mail.yourdomain.com)? Add it here, then configure your DNS settings.

DNS config required!

After adding, check the DNS Setup tab to configure your A & MX records, otherwise emails won't arrive.

Managed Domains

Domain Status Actions
Loading domains...

DNS Configuration Guide

To route emails from your custom domain to this system, you must configure the following records in your domain registrar's DNS dashboard (Cloudflare, GoDaddy, Namecheap, etc.).

Step 1

Configure Mail Server CNAME Record

Create a CNAME record pointing your mail subdomain to the system's mail server address mail.accmall.me (Cloudflare proxy status set to DNS Only). Tạo bản ghi CNAME trỏ tên miền phụ mail của bạn thẳng về địa chỉ máy chủ thư hệ thống mail.accmall.me (Cloudflare để chế độ DNS Only).

Type Host / Name Value / Points to TTL
CNAME mail mail.accmall.me Automatic / 1 Hour
Step 2

Configure Mail Exchanger (MX) Record

Point your root domain's MX record to the subdomain you created in Step 1. This tells other email servers to send mail to your Node.js app.

Type Host / Name Value / Points to Priority TTL
MX @ (Root) mail.yourdomain.com 10 Automatic / 1 Hour
Optional

Configure SPF Record (Highly Recommended)

Add an SPF record to let other mail servers know your server is authorized to handle mail, improving delivery reliability.

Type Host / Name Value TTL
TXT @ (Root) v=spf1 mx a ~all Automatic / 1 Hour

Programmatic API Documentation

We provide a complete RESTful API for developers. Authenticate your external applications or bots using your API Key. Provide your API Key either as a request header X-API-KEY or in the Authorization: Bearer <API_KEY> header.

GET

1. List Active Inboxes

Retrieve all temporary email addresses registered under your user account.

curl -H "X-API-KEY: YOUR_API_KEY" http://localhost:3000/api/inboxes
POST

2. Generate a New Inbox

Create a new temporary email address. Optional query parameter ?domain=... allows selecting custom domains.

curl -X POST -H "X-API-KEY: YOUR_API_KEY" http://localhost:3000/api/inboxes?domain=localhost
GET

3. List Received Emails for an Inbox

Get a list of messages received by a specific email address.

curl -H "X-API-KEY: YOUR_API_KEY" http://localhost:3000/api/messages/your_email@localhost
GET

4. Read Specific Email Details

Get full text, raw HTML, and attachment links for a specific email ID.

curl -H "X-API-KEY: YOUR_API_KEY" http://localhost:3000/api/messages/your_email@localhost/648b2b9f34f24
POST

5. Extend Inbox Expiration (VIP Only)

Extend email inbox validity. Accepts ?days=N (e.g. 30, 90, up to 365 days / 1 year maximum).

curl -X POST -H "X-API-KEY: YOUR_API_KEY" http://localhost:3000/api/inboxes/your_email@localhost/extend?days=90
Message copied!