Nilovon Connect

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.delivered and message.bounced
  • Segment audiences with dynamic filter criteria

Quick look

send-email.ts
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>",
});

Next steps

On this page