Files
GibSend/packages/sdk
2024-05-30 20:01:20 +10:00
..
2024-05-26 15:00:07 +10:00
2024-05-23 22:02:33 +10: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
2024-05-30 20:01:20 +10:00
2024-05-26 15:00: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",
});