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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@alipeople/n8n-nodes-sendon

v0.1.7

Published

Sendon node and tool package for n8n

Readme

n8n-nodes-sendon

This is an n8n community node. It lets you use Sendon in your n8n workflows.

Sendon is a messaging platform that allows you to send SMS, LMS, and MMS messages programmatically via API.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Usage Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

The Sendon node supports the following operations:

  • Send SMS, LMS, and MMS messages
    • Automatic message type detection (SMS/LMS) based on content length
    • Optional title auto-generation for LMS/MMS
    • Support for development and production environments
    • Mark message as advertisement

Credentials

To use this node, you need a Sendon account and API credentials.

  1. Sign up at Sendon as a business user. Note: Only users with a registered business in South Korea are eligible to use Sendon. After registration, obtain your Sendon ID and API Key.
  2. Charge your credits or points to send messages.
  3. Generate your API Key in your settings.
  4. In n8n, go to SettingsCredentials.
  5. Add new credentials for "Sendon" and enter:
    • Sendon ID: Your Sendon account ID
    • API Key: Your Sendon API key

Authentication uses HTTP Basic Auth with your Sendon ID and API Key.

Compatibility

  • Requires n8n version: 1.0.0 or higher (please adjust if you have a different minimum)
  • Node.js ≥ 20.15
  • No known incompatibilities at this time.

Usage

Parameters

  • Sender Number (from): The phone number sending the message
  • Recipient Number (to): The phone number receiving the message
  • Message (message): The content of your SMS/LMS/MMS
  • Title (title, optional): Custom title for LMS/MMS (auto-generated from first 20 characters if omitted)
  • Is Ad (isAd, optional): Mark as advertisement (default: false)
  • Type (type, optional): Auto (default), SMS, LMS, MMS

Message Type Auto-Detection

  • If Type is set to Auto or left blank:
    • SMS: ≤ 90 bytes
    • LMS: > 90 bytes
    • MMS: Only if selected manually

Example

Basic SMS:

{
  "from": "01012345678",
  "to": "01087654321",
  "message": "Hello from n8n!",
  "isAd": false,
  "type": "auto"
}

Long Message (LMS):

{
  "from": "01012345678",
  "to": "01087654321",
  "message": "This is a longer message that will automatically be sent as LMS because it exceeds the SMS character limit...",
  "title": "Custom Title",
  "isAd": false,
  "type": "auto"
}

For more usage help, see the Try it out documentation.

Resources

Version history

  • v1.0.0: Initial release. Supports sending SMS, LMS, and MMS with auto-detection and credential management.