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

n8n-nodes-newsmanapp

v0.1.21

Published

NewsMAN community node for n8n

Readme

n8n-nodes-newsmanapp

NewsMAN community node for n8n.

Use this node to manage subscribers and segments, send transactional emails, and send SMS through NewsMAN API v1.2.

Features

  • Lists: get available email and SMS lists
  • Subscribers: get by email, create or update, add tags
  • Segments: get segments, add subscriber to segment
  • Transactional: send one message to many recipients in a single API call
  • SMS: subscribe contacts and send one-off SMS messages

Compatibility

  • n8n: tested on self-hosted n8n 2.x
  • Node.js: 22+ recommended for local development and publishing
  • NewsMAN API: https://ssl.newsman.app/api/1.2/rest/{userId}/{apiKey}/

Install

n8n Community Nodes UI

Install package:

n8n-nodes-newsmanapp

Manual / self-hosted

npm install n8n-nodes-newsmanapp

Then restart n8n.

Credentials

Create NewsMAN API credentials in n8n:

  • User ID
  • API Key

Quick Start

Example flow for transactional email:

  1. Prepare recipient rows in a previous node (for example Edit Fields), one recipient per item:
    • email (required)
    • name (optional)
    • params (optional object)
  2. Add NewsMAN node and choose Send Transactional Message.
  3. Set Recipients Source to From Previous Items (Single API Call).
  4. Configure sender fields, subject, and HTML.
  5. Execute the node.

Transactional Recipients Modes

For Send Transactional Message, choose one mode:

  • From Previous Items (Single API Call): use all incoming items as recipients in one API call
  • From Expression (JSON Array): provide an expression that resolves to an array
  • Manual JSON: provide the recipients array directly in the field

Recipient object format:

{
  "email": "[email protected]",
  "name": "Recipient Name",
  "params": {
    "name": "Recipient Name"
  }
}

Operations

Lists

  • Get Lists -> list.all
  • Get SMS Lists -> sms.lists

Subscribers

  • Get Subscriber -> subscriber.getByEmail
  • Create or Update Subscriber -> subscriber.saveSubscribe
  • Add Tag to Subscriber -> subscriber.addTag
  • Create or Update SMS Subscriber -> sms.saveSubscribe

Segments

  • Get Segments -> segment.all
  • Add Subscriber to Segment -> segment.addSubscriber
  • Add Subscriber to Segment by Email -> subscriber.getByEmail + segment.addSubscriber

Messaging

  • Send Transactional Message -> transactional.messageSend
  • Send SMS -> sms.sendone

Output Notes

  • Create or Update Subscriber and Create or Update SMS Subscriber normalize scalar responses to:
    • { "subscriber_id": <id> }
  • Add Tag to Subscriber normalizes boolean responses to:
    • { "success": true | false }

This helps downstream expressions like:

{{$json.subscriber_id}}

Development

npm install
npm run lint
npm run build

License

MIT