firemail-sdk
v1.0.0
Published
  
Maintainers
Readme
🔥 Firemail
Firemail is a lightweight library to create and manage temporary email addresses
valid for up to 30 days.
If an email is deleted or expires, you can simply create a new one — no hassle.
✨ Features
- 📧 Create temporary email addresses
- ⏳ Emails valid for up to 30 days
- 📬 Read received messages
- 🔍 Read a specific message by ID
- 📊 Check email status
- ⚡ Simple and lightweight API
- 🟢 Works with Bun, Node.js and other runtimes
📦 Installation
bun add firemail
npm install firemail
yarn add firemail
pnpm add firemail
# Or any other🚀 Quick Start
import {
create,
verifyMessage,
verifyMessages,
status
} from "firemail";
const emailName = "coolemail";
// DO NOT include @firemail.com.br
const email = await create(emailName);
const messages = await verifyMessages(emailName);
// const message = await verifyMessage(emailName, id);
const stats = await status(emailName);
console.log(email, messages, stats);⚠️ Important Notes
- Email addresses are temporary and valid for up to 30 days
- Do not include @firemail.com.br when creating an email
- Firemail is not responsible for any misuse of this library
🛡️ License
This project is licensed under the MIT License. See more: https://en.wikipedia.org/wiki/MIT_License
