npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sidemail

v0.2.4

Published

Node.js library for the Sidemail API.

Readme

Sidemail Node.js library

The Sidemail Node.js library provides convenient access to the Sidemail.io API from applications written in server-side JavaScript.

See the CHANGELOG for version history and updates.

Requirements

Node 16 or higher.

Installation

Install this package with:

npm install sidemail --save
# or
yarn add sidemail

Usage

First, the package needs to be configured with your project's API key, which you can find in the Sidemail Dashboard after you signed up.

Initiate the SDK:

// Create Sidemail instance and set your API key.
const configureSidemail = require("sidemail");
const sidemail = configureSidemail({ apiKey: "xxxxx" });

Then, you can call sidemail.sendEmail to send emails like so:

try {
	const response = await sidemail.sendEmail({
		toAddress: "[email protected]",
		fromAddress: "[email protected]",
		fromName: "Your app",
		templateName: "Welcome",
		templateProps: { foo: "bar" },
	});

	// Response contains email ID
	console.log(`Email ID '${response.id}' successfully queued for sending!`);
} catch (err) {
	// Uh-oh, we have an error! You error handling logic...
	console.error(err);
}

The response will look like this:

{
	"id": "5e858953daf20f3aac50a3da",
	"status": "queued"
}

Learn more about Sidemail API:

Email sending examples

Send password reset email template

await sidemail.sendEmail({
	toAddress: "[email protected]",
	fromAddress: "[email protected]",
	fromName: "Your app",
	templateName: "Password reset",
	templateProps: { resetUrl: "https://your.app/reset?token=123" },
});

Schedule email delivery

await sidemail.sendEmail({
	toAddress: "[email protected]",
	fromName: "Startup name",
	fromAddress: "[email protected]",
	templateName: "Welcome",
	templateProps: { firstName: "Patrik" },
	// Deliver email in 60 minutes from now
	scheduledAt: new Date(Date.now() + 60 * 60000).toISOString(),
});

Send email template with dynamic list

Useful for dynamic data where you have n items that you want to render in email. For example, items in a receipt, weekly statistic per project, new comments, etc.

await sidemail.sendEmail({
    toAddress: "[email protected]",
    fromName: "Startup name",
    fromAddress: "[email protected]",
    templateName: "Template with dynamic list",
    templateProps: {
        list: [
            { text: "Dynamic list" },
            { text: "allows you to generate email template content" },
            { text: "based on template props." },
        ],
    }
}
});

Send custom HTML email

await sidemail.sendEmail({
	toAddress: "[email protected]",
	fromName: "Startup name",
	fromAddress: "[email protected]",
	subject: "Testing html only custom emails :)",
	html: "<html><body><h1>Hello world! 👋</h1><body></html>",
});

Send custom plain text email

await sidemail.sendEmail({
	toAddress: "[email protected]",
	fromName: "Startup name",
	fromAddress: "[email protected]",
	subject: "Testing plain-text only custom emails :)",
	text: "Hello world! 👋",
});

Error handling

The SDK throws SidemailError for all errors. API errors include message, httpStatus, errorCode, and moreInfo.

try {
	await sidemail.sendEmail({
		toAddress: "[email protected]",
		fromAddress: "[email protected]",
		subject: "Hello",
		text: "Hello",
	});
} catch (err) {
	if (err.name === "SidemailError") {
		console.error(err.message, err.errorCode, err.httpStatus);
	}
}

Attachments helper

You can use the fileToAttachment helper to easily encode file data for attachments:

const configureSidemail = require("sidemail");
const sidemail = configureSidemail({ apiKey: "your-api-key" });

const fs = require("fs");
const pdfBuffer = fs.readFileSync("./invoice.pdf");
const attachment = sidemail.fileToAttachment("invoice.pdf", pdfBuffer);

await sidemail.sendEmail({
	toAddress: "[email protected]",
	fromAddress: "[email protected]",
	subject: "Invoice",
	text: "Invoice attached.",
	attachments: [attachment],
});

Auto-pagination

The SDK provides automatic pagination for list and search endpoints that return paginated results. This allows you to iterate through all results without manually handling pagination cursors.

Async iterator style

const result = await sidemail.contacts.list();

for await (const contact of result) {
	console.log(contact.emailAddress);
	// Process each contact across all pages automatically
}

Callback style

const result = await sidemail.contacts.list();

await result.autoPaginateEach(async (contact) => {
	console.log(contact.emailAddress);
	// Process each contact across all pages automatically
});

Supported methods:

  • sidemail.contacts.list()
  • sidemail.email.search()

Email methods

Search emails

Searches emails based on the provided query and returns found email data. This endpoint is paginated and returns a maximum of 20 results per page. The email data are returned sorted by creation date, with the most recent emails appearing first. This endpoint supports auto-pagination.

const result = await sidemail.email.search({
	query: {
		toAddress: "[email protected]",
		status: "delivered",
		templateProps: { foo: "bar" },
	},
});

console.log("Found emails:", result.data);
console.log("Has more:", result.hasMore);

Retrieve a specific email

Retrieves the email data. You need only supply the email ID.

const response = await sidemail.email.get("SIDEMAIL_EMAIL_ID");
console.log("Email data:", response.email);

Delete a scheduled email

Permanently deletes an email. It cannot be undone. Only scheduled emails which are yet to be send can be deleted.

const response = await sidemail.email.delete("SIDEMAIL_EMAIL_ID");
console.log("Email deleted:", response.deleted);

Contact methods

Create or update a contact

try {
	const response = await sidemail.contacts.createOrUpdate({
		emailAddress: "[email protected]",
		identifier: "123",
		customProps: {
			name: "Marry Lightning",
			// ... more of your contact props ...
		},
	});

	console.log(`Contact was '${response.status}'.`);
} catch (err) {
	// Uh-oh, we have an error! You error handling logic...
	console.error(err);
}

Find a contact

const response = await sidemail.contacts.find({
	emailAddress: "[email protected]",
});

List all contacts

Lists all contacts in your project. This endpoint supports auto-pagination.

const result = await sidemail.contacts.list();

console.log(result.data); // array of contacts
console.log(result.hasMore); // boolean if more data
console.log(result.paginationCursorNext); // cursor for next page

Delete a contact

const response = await sidemail.contacts.delete({
	emailAddress: "[email protected]",
});

Project methods

Create a linked project

A linked project is automatically associated with a regular project based on the apiKey provided into configureSidemail. To personalize the email template design, make a subsequent update API request. Linked projects will be visible within the parent project on the API page in your Sidemail dashboard.

// create a linked project && save API key from `response.apiKey` to your datastore
const response = await sidemail.project.create({
	name: "Customer X linked project",
});

// user.db.save({ sidemailApiKey: response.apiKey }) ...

Update a linked project

Updates a linked project based on the apiKey provided into configureSidemail.

await sidemail.project.update({
	name: "New name",
	emailTemplateDesign: {
		logo: {
			sizeWidth: 50,
			href: "https://example.com",
			file:
				"PHN2ZyBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjIiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMTIgNS43MmMtMi42MjQtNC41MTctMTAtMy4xOTgtMTAgMi40NjEgMCAzLjcyNSA0LjM0NSA3LjcyNyA5LjMwMyAxMi41NC4xOTQuMTg5LjQ0Ni4yODMuNjk3LjI4M3MuNTAzLS4wOTQuNjk3LS4yODNjNC45NzctNC44MzEgOS4zMDMtOC44MTQgOS4zMDMtMTIuNTQgMC01LjY3OC03LjM5Ni02Ljk0NC0xMC0yLjQ2MXoiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==",
		},
		font: { name: "Acme" },
		colors: { highlight: "#0000FF", isDarkModeEnabled: true },
		unsubscribeText: "Darse de baja",
		footerTextTransactional:
			"You're receiving these emails because you registered for Acme Inc.",
	},
});

Get a project

Retrieves project data based on the apiKey provided into configureSidemail. This method works for both normal projects created via Sidemail dashboard and linked projects created via the API.

const response = await sidemail.project.get();

Delete a linked project

Permanently deletes a linked project based on the apiKey provided into configureSidemail. It cannot be undone.

await sidemail.project.delete();

More info

Visit Sidemail docs for more information.