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
- Send: Send an email to an email address
- Type: Notification type ID for categorizing the send (defaults to
n8nwhen empty)
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:
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:
n8n when empty)Optional fields (in Additional Fields):
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"
}
}