emails-sdk
v0.0.1
Published
A lightweight mail SDK.
Readme
mail-sdk
A lightweight mail SDK for Node.js.
Status: early scaffold. The public surface is not stable yet.
Install
npm install mail-sdkUsage
import { createClient } from 'mail-sdk';
const mail = createClient({
// transport config goes here
});
await mail.send({
from: '[email protected]',
to: '[email protected]',
subject: 'Hello',
text: 'Hi there!',
});License
MIT
