n8n-nodes-pingram
v0.2.4
Published
n8n community node for Pingram - Send SMS and Email notifications
Downloads
346
Maintainers
Readme
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
Credentials
To use this node, you need a Pingram API key:
- Sign up at Pingram
- Navigate to Environments in your dashboard
- Copy your API key (starts with
pingram_sk_...) - 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
- Add the Pingram node to your workflow
- Select SMS as the resource
- Select Send as the operation
- Enter the required fields:
- Phone Number: The recipient's phone number in E.164 format (e.g.,
+15005550006) - Message: The SMS content
- Phone Number: The recipient's phone number in E.164 format (e.g.,
Optional:
- Type: Notification type ID for categorizing the send (defaults to
n8nwhen empty)
Example request body sent to Pingram API:
{
"type": "n8n",
"to": {
"number": "+15005550006"
},
"sms": {
"message": "Hello from n8n!"
}
}Send Email
- Add the Pingram node to your workflow
- Select Email as the resource
- Select Send as the operation
- 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
n8nwhen 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": "[email protected]"
},
"email": {
"subject": "Welcome!",
"html": "<h1>Hello, World!</h1>",
"senderName": "My App",
"senderEmail": "[email protected]"
}
}