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 🙏

© 2024 – Pkg Stats / Ryan Hefner

templateless-js

v0.1.0-alpha.6

Published

Ship faster by sending elegant emails using just code

Downloads

6

Readme


npm version Github Actions Downloads X (formerly Twitter) Follow

Templateless lets you generate and send transactional emails quickly and easily so you can focus on building your product.

It's perfect for SaaS, web apps, mobile apps, scripts and anywhere you have to send email programmatically.

✨ Features

  • 👋 Anti drag-and-drop by design — emails are a part of your code
  • Components as code — function calls turn into email HTML components
  • 💻 SDK for any language — use your favorite programming language
  • 🔍 Meticulously tested — let us worry about email client compatibility
  • 💌 Use your favorite ESP — Amazon SES, SendGrid, Mailgun + more
  • 💪 Email infrastructure — rate-limiting, retries, scheduling + more
  • Batch sending — send 1 email or 1,000 with one API call

🚀 Getting started

Add to your project via yarn:

yarn add templateless-js

Or npm:

npm install --save templateless-js

🔑 Get Your API Key

You'll need an API key for the example below ⬇️

Get Your API Key

  • 3,000 emails per month
  • All popular email provider integrations
  • Start sending right away

👩‍💻 Quick example

This is all it takes to send a signup confirmation email:

import { Content, Email, EmailAddress, Templateless } from 'templateless-js'

const sendEmail = async () => {
  const content = Content
    .builder()
    .text('Hi, please **confirm your email**:')
    .button('Confirm Email', 'https://your-company.com/signup/confirm?token=XYZ')
    .build()

  const email = Email
    .builder()
    .to(new EmailAddress('<YOUR_CUSTOMERS_EMAIL_ADDRESS>'))
    .subject('Confirm your signup 👋')
    .content(content)
    .build()

  const templateless = new Templateless('<YOUR_API_KEY>')
  await templateless.send(email)
}

sendEmail()

There are more examples in the examples folder ✨

[!NOTE] 🚧 The SDK is not stable yet. This API might change as more features are added. Please watch the repo for the changes in the CHANGELOG.

🏗 Debugging

You can generate test API keys by activating the Test Mode in your dashboard. By using these keys, you'll be able to view your fully rendered emails without actually sending them.

When you use a test API key in your SDK, the following output will appear in your logs when you try to send an email:

Templateless [TEST MODE]: Emailed [email protected], preview: https://tmpl.sh/ATMxHLX4r9aE

The preview link will display the email, but you must be logged in to Templateless to view it.

🔳 Components

Emails are crafted programmatically by making function calls. There's no dealing with HTML or drag-and-drop builders.

All of the following components can be mixed and matched to create dynamic emails:

Text component allow you to insert a paragraph. Each paragraph supports basic markdown:

  • Bold text: **bold text**

  • Italic text: _italic text_

  • Link: [link text](https://example.com)

  • Also a link: <https://example.com>

  • Headers (h1-h6):

    • # Big Header
    • ###### Small Header
  • Unordered list:

    - item one
    - item two
    - item three
  • Ordered list:

    1. item one
    1. item two
    1. item three
Content.builder()
  .text("## Thank you for signing up")
  .text("Please **verify your email** by [clicking here](https://example.com/confirm?token=XYZ)")
  .build()

Link component adds an anchor tag. This is the same as a text component with the link written in markdown:

Content.builder()
  .link("Confirm Email", "https://example.com/confirm?token=XYZ")
  .build()

Button can also be used as a call to action. Button color is set via your dashboard's app color.

Content.builder()
  .button("Confirm Email", "https://example.com/confirm?token=XYZ")
  .build()

Image component will link to an image within your email. Keep in mind that a lot of email clients will prevent images from being loaded automatically for privacy reasons.

Content.builder()
  .image(
    "https://placekitten.com/300/200",  // where the image is hosted
    "https://example.com",              // [optional] link url, if you want it to be clickable
    300,                                // [optional] width
    200,                                // [optional] height
    "Alt text"                          // [optional] alternate text
  )
  .build()

Only the src parameter is required; everything else is optional.

If you have "Image Optimization" turned on:

  1. Your images will be cached and distributed by our CDN for faster loading. The cache does not expire. If you'd like to re-cache, simply append a query parameter to the end of your image url.

  2. Images will be converted into formats that are widely supported by email clients. The following image formats will be processed automatically:

    • Jpeg
    • Png
    • Gif
    • WebP
    • Tiff
    • Ico
    • Bmp
    • Svg
  3. Maximum image size is 5MB for free accounts and 20MB for paid accounts.

  4. You can specify width and/or height if you'd like (they are optional). Keep in mind that images will be scaled down to fit within the email theme, if they're too large.

OTP component is designed for showing temporary passwords and reset codes.

Content.builder()
  .text("Here's your **temporary login code**:")
  .otp("XY78-2BT0-YFNB-ALW9")
  .build()

You can easily add social icons with links by simply specifying the username. Usually, this component is placed in the footer of the email.

These are all the supported platforms:

Content.builder()
  .socials([
    new SocialItem(Service.Website, 'https://example.com'),
    new SocialItem(Service.Email, '[email protected]'),
    new SocialItem(Service.Phone, '123-456-7890'), // `tel:` link
    new SocialItem(Service.Facebook, 'Username'),
    new SocialItem(Service.YouTube, 'ChannelID'),
    new SocialItem(Service.Twitter, 'Username'),
    new SocialItem(Service.X, 'Username'),
    new SocialItem(Service.GitHub, 'Username'),
    new SocialItem(Service.Instagram, 'Username'),
    new SocialItem(Service.LinkedIn, 'Username'),
    new SocialItem(Service.Slack, 'Org'),
    new SocialItem(Service.Discord, 'Username'),
    new SocialItem(Service.TikTok, 'Username'),
    new SocialItem(Service.Snapchat, 'Username'),
    new SocialItem(Service.Threads, 'Username'),
    new SocialItem(Service.Telegram, 'Username'),
    new SocialItem(Service.Mastodon, '@[email protected]'),
    new SocialItem(Service.Rss, 'https://example.com/blog'),
  ])
  .build()

If you'd like your recipients to be able to read the email in a browser, you can add the "view in browser" component that will automatically generate a link. Usually, this is placed in the header or footer of the email.

You can optionally provide the text for the link. If none is provided, default is used: "View in browser"

Anyone who knows the link will be able to see the email.

Content.builder()
    .viewInBrowser("Read Email in Browser")
    .build()

Link to your mobile apps via store badges:

Content.builder()
  .storeBadges([
    new StoreBadgeItem(StoreBadge.AppStore, "https://apps.apple.com/us/app/example/id1234567890"),
    new StoreBadgeItem(StoreBadge.GooglePlay, "https://play.google.com/store/apps/details?id=com.example"),
    new StoreBadgeItem(StoreBadge.MicrosoftStore, "https://apps.microsoft.com/detail/example"),
  ])
  .build()

You can also generate QR codes on the fly. They will be shown as images inside the email.

Here are all the supported data types:

// url
Content.builder()
  .qrCode("https://example.com")
  .build()

// email
Content.builder()
  .component(QrCode.email("[email protected]"))
  .build()

// phone
Content.builder()
  .component(QrCode.phone("123-456-7890"))
  .build()

// sms / text message
Content.builder()
  .component(QrCode.sms("123-456-7890"))
  .build()

// geo coordinates
Content.builder()
  .component(QrCode.coordinates(37.773972, -122.431297))
  .build()

// crypto address (for now only Bitcoin and Ethereum are supported)
Content.builder()
  .component(QrCode.cryptocurrencyAddress(Cryptocurrency.Bitcoin, "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa"))
  .build()

// you can also encode any binary data
Content.builder()
  .component(new QrCode(new Uint8Array([1, 2, 3])))
  .build()

Generated signatures can be added to your emails to give a bit of a personal touch. This will embed an image with your custom text using one of several available fonts:

// signature with a default font
Content.builder()
  .signature("John Smith")
  .build()

// signature with a custom font
Content.builder()
  .signature("John Smith", SignatureFont.ReenieBeanie)
  .build()

These are the available fonts:

Signature should not exceed 64 characters. Only alphanumeric characters and most common symbols are allowed.


Components can be placed in the header, body and footer of the email. Header and footer styling is usually a bit different from the body (for example the text is smaller).

const header = Header.builder() // header of the email
  .text("Smaller text")
  .build()

const content = Content.builder() // body of the email
  .text("Normal text")
  .build()

Currently there are 2 themes to choose from: Theme.Unstyled and Theme.Simple

const content = Content.builder()
  .theme(Theme.Simple)
  .text("Hello world")
  .build()

🤝 Contributing

  • Contributions are more than welcome
  • Please star this repo for more visibility <3

📫 Get in touch

🍻 License

MIT