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

@retinue/tools-email

v0.3.0

Published

Send a deployment's own mail: one contract over SMTP and an HTTP API, with a preview that is byte-identical to the send.

Readme

@retinue/tools-email

Send a Retinue deployment's own mail — from its own domain, with no user grant. One contract over SMTP and an HTTP API.

npm i @retinue/tools-email

Usage

import { createEmailToolkit, smtpProvider } from "@retinue/tools-email";
import type { CredentialResolver } from "@retinue/agentkit/tools";

// Yours: resolves a `basic` credential — the SMTP username and password.
declare const resolver: CredentialResolver;

const toolkit = createEmailToolkit({
  provider: smtpProvider({ host: "smtp.example.com", port: 587, credentialRef: "smtp", resolver }),
  from: "[email protected]",
});

httpProvider({ name: "resend", credentialRef, resolver }) swaps in an HTTP API. The result shape does not change — a test asserts it.

Why the preview matters

A sent message cannot be recalled, and unlike a post it cannot be deleted afterwards. So email_send is gated and email_compose_preview returns the exact bytes that would be transmitted.

Byte-identical is the whole point. A preview that differed would invite approving one message and dispatching another, with the difference in the parts nobody reads carefully — the encoded subject, the multipart order, the bcc line. That is why the composed message carries no Date and no Message-ID (either would differ between the two calls) and why the multipart boundary is hashed from the content rather than random. The sending MTA adds both headers, which is where they belong.

What it will not do

  • A rejection is never reported as a send. Every SMTP reply is checked, and the reply to the terminating dot is the only thing that means accepted. A 4xx is retryable; a 5xx is not.
  • No fabricated delivery status. SMTP cannot report what happened to a message after it is handed on, so email_get_status says so rather than returning "sent".
  • No plaintext downgrade. A server that does not offer STARTTLS gets a refusal, not a fallback.
  • No lists or campaigns. Twenty recipients across to, cc and bcc combined.
  • Bcc never travels. It shows in the preview and is stripped before SMTP transmission.

Before your first send: SPF, DKIM and DMARC on the sending domain, aligned to the From address. Most first sends fail there, the symptom is a 250 Ok and nothing arriving, and no code in this package can fix it. The integration page has the detail.

MIT.