Nilovon Connect
Send email and SMS from one API.
Nilovon Connect is a messaging API for sending email and SMS. One SDK, one dashboard — no need to juggle multiple providers.
What you can do
- Send email and SMS through a single, unified API
- Manage contacts with tags, metadata, and bulk import
- Build templates with
{{variable}}placeholders for both channels - Receive webhooks for delivery events like
message.deliveredandmessage.bounced - Segment audiences with dynamic filter criteria
Quick look
import { createClient } from "@nilovonjs/connect";
const connect = createClient({
apiKey: "sk_live_...",
});
await connect.message.send({
channelType: "email",
emailDomainId: "dom_...",
to: "user@example.com",
subject: "Welcome aboard",
body: "<h1>Hey there!</h1><p>Thanks for signing up.</p>",
});