This libary is currently under development, created to simplify react emails and subscribers management
For more info visit Remase.io.
This is the node.js library for Remase Api
You can install Remase via npm:
npm install remase
# or
yarn add remase
First, you need to get an API key from Remase.io.
import { Remase } from "remase";
const remase = new Remase("your_api_key");
Design your email on Remase.io and copy the template ID
Sending your email:
await remase.emails.send({
from: "you@example.com",
to: "user@gmail.com",
subject: "hello world",
templateId: "your_templateId",
});
await remase.subscribers.add({
email: "user@gmail.com",
});
MIT License