Lunogram

Introduction

Reach your users at the right moment, through the right channel

Lunogram is an open source customer engagement platform. Send personalized emails, SMS, and push notifications, all from one place.

Why Lunogram?

Customer engagement shouldn't require stitching together multiple tools or paying per-message fees. Lunogram gives you everything in one platform.

Open Source, Your Way

Lunogram is fully open source. Run it yourself for complete control, or use Lunogram Cloud to get started in minutes.

What You Can Do

Connect Your App

Integrate Lunogram with a few lines of code:

import { Lunogram } from "@lunogram/js-sdk";

const lunogram = new Lunogram("your-api-key");

// User operations
await lunogram.user.upsert({ identifier: [{ externalId: "user_123" }], email: "user@example.com" });
await lunogram.user.events.post([
  { name: "user.signed_up", data: { plan: "free" } },
]);

// Organization operations
await lunogram.organization.upsert({ identifier: [{ externalId: "org-123" }], name: "Acme" });

SDKs available for JavaScript, iOS, and Android.

Acknowledgments

Lunogram is a fork of Parcelvoy, an open-source customer engagement platform. We're grateful to the Parcelvoy team for their foundational work and are committed to continuing the project's development as an open-source solution.

On this page