Files
GibSend/packages/sdk
KM Koushik 70026cb11d domain apis (#146)
* fix: create domain api

* add domain apis

* fix url

---------

Co-authored-by: harshsbhat <harsh121102@gmail.com>
2025-04-05 06:48:03 +11:00
..
2025-04-05 06:48:03 +11:00
2025-04-05 06:48:03 +11:00
2024-05-23 22:02:33 +10:00
2024-05-25 08:40:35 +10:00
2024-05-25 18:46:41 +10:00
2024-05-25 08:45:57 +10:00
2025-04-05 06:48:03 +11:00
2024-08-19 18:07:07 +10:00
2024-05-23 22:02:33 +10:00

Unsend SDK

Prerequisites

Installation

NPM

npm install unsend

Yarn

yarn add unsend

PNPM

pnpm add unsend

Bun

bun add unsend

Usage

import { Unsend } from "unsend";

const unsend = new Unsend({ apiKey: "us_12345" });

unsend.emails.send({
  to: "hello@acme.com",
  from: "hello@company.com",
  subject: "Unsend email",
  html: "<p>Unsend is the best open source product to send emails</p>",
  text: "Unsend is the best open source product to send emails",
});