https://github.com/halitsever/temp-mail-plus-api
📨 Unofficial API Wrapper for Temp Mail Plus service
https://github.com/halitsever/temp-mail-plus-api
Last synced: 3 months ago
JSON representation
📨 Unofficial API Wrapper for Temp Mail Plus service
- Host: GitHub
- URL: https://github.com/halitsever/temp-mail-plus-api
- Owner: halitsever
- Created: 2025-08-12T08:54:46.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-08-13T11:17:40.000Z (9 months ago)
- Last Synced: 2025-11-03T22:21:38.259Z (6 months ago)
- Language: TypeScript
- Homepage:
- Size: 22.5 KB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README


📨 API Wrapper for Temp Mail Plus service
- 💌 [**Create temp mails**](#) - via temp mail plus
- 📩 [**Easy usage**](#) - Create & read temp mails easily
Fetching inbox by email:
```javascript
import TempMail from "temp-mail-plus-api";
const tempMail = new TempMail("halit@rover.info");
const inbox = await tempMail.fetchInbox();
```
Fetching mail content by `mail_id`:
```javascript
const mailId = 32944585;
await tempMail.fetchMailById(mailId);
```
Get all mail domains:
```javascript
import TempMail, { TEMP_MAIL_DOMAINS } from "temp-mail-plus-api";
console.log(TEMP_MAIL_DOMAINS);
```
MIT LICENSE - Halit Sever