Emitto is a developer-first Notification API that lets you send Emails, SMS with ease. Built for modern applications, Emitto is scalable, reliable, and plug-and-play.
- Unified API for Email and SMS notifications
- Event-Driven Architecture powered by Kafka for massive scale
- API Key-based Authentication with Redis caching for lightning-fast requests
- Smart Queuing System with automatic retries and dead-letter handling
- Email Templating Engine with custom branding support
- NPM SDK for instant integration into any JavaScript project
- Comprehensive Dashboard for see uses
- Real-time Status Updates and delivery confirmations
- Plug-and-play Setup with minimal configuration required
-
Install the SDK in your project:
npm install emitto
-
Initialize the client
import { Emitto } from "emitto"; const emitto = new Emitto('nt_111222333'); (async function() { const response = await emitto.emails.send({ from: '[email protected]', to: '[email protected]', subject: 'Testing Email from emitto', html: '<strong>hello world!</strong>' }); console.log(`Email Response: ${response}`); })();