Buildspace
Notifications

Server SDK

Server-side notifications methods.

import Buildspace from "@buildspacestudio/sdk";

const bs = new Buildspace(process.env.BUILDSPACE_SECRET_KEY!);

await bs.notifications.send({
  to: "user@example.com",
  subject: "Welcome",
  html: "<p>Hello</p>",
});

await bs.notifications.sendTemplate("welcome", {
  to: "user@example.com",
  variables: { name: "Alice" },
});