Back to Nodes

Pingram

Last updated May 5, 2026

n8n community node for Pingram - Send SMS and Email notifications

29 Weekly Downloads
328 Monthly Downloads

Included Nodes

Pingram

Description

n8n-nodes-pingram

This is an n8n community node for Pingram – a notification infrastructure service that lets you send SMS and Email notifications.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Usage
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

SMS

  • Send: Send an SMS message to a phone number
  • Email

  • Send: Send an email to an email address
  • Credentials

    To use this node, you need a Pingram API key:

    1. Sign up at Pingram
    2. Navigate to Environments in your dashboard
    3. Copy your API key (starts with pingramsk...)
    4. Select your region (US, Canada, or EU)

    Supported Regions

    | Region | API Endpoint |
    | ———— | ————————— |
    | US (Default) | https://api.pingram.io |
    | Canada | https://api.ca.pingram.io |
    | EU | https://api.eu.pingram.io |

    Usage

    Send SMS

    1. Add the Pingram node to your workflow
    2. Select SMS as the resource
    3. Select Send as the operation
    4. Enter the required fields:
    Phone Number: The recipient’s phone number in E.164 format (e.g., +15005550006)
    Message: The SMS content

    Optional:

  • Type: Notification type ID for categorizing the send (defaults to n8n when empty)
  • Example request body sent to Pingram API:

    {
      "type": "n8n",
      "to": {
        "number": "+15005550006"
      },
      "sms": {
        "message": "Hello from n8n!"
      }
    }
    

    Send Email

    1. Add the Pingram node to your workflow
    2. Select Email as the resource
    3. Select Send as the operation
    4. Enter the required fields:
    Email Address: The recipient’s email address
    Subject: Email subject line
    HTML Body: HTML content of the email

    Optional:

  • Type: Notification type ID for categorizing the send (defaults to n8n when empty)
  • Optional fields (in Additional Fields):

  • Sender Name: Display name of the sender
  • Sender Email: Sender email address
  • Preview Text: Preview text shown in inbox
  • Notification Type: Same as Type when the main field is empty (ID for categorizing notifications)
  • Example request body sent to Pingram API:

    {
      "type": "n8n",
      "to": {
        "email": "user@example.com"
      },
      "email": {
        "subject": "Welcome!",
        "html": "

    Hello, World!

    ", "senderName": "My App", "senderEmail": "noreply@example.com" } }

    Resources

  • Pingram Documentation
  • Pingram API Reference
  • n8n Community Nodes Documentation

License

MIT