n8n-nodes-sequenzy
v1.0.1
Published
Sequenzy is an email platform for SaaS companies to send lifecycle emails, email campaigns, and transactional emails
Readme
n8n-nodes-sequenzy
This is an n8n community node for Sequenzy — an email platform for SaaS companies to send lifecycle emails, email campaigns, and transactional emails.
n8n is a fair-code licensed workflow automation platform.
Installation
Follow the installation guide in the n8n community nodes documentation.
npm Installation
npm install n8n-nodes-sequenzyManual Installation
To install this node manually in a self-hosted n8n instance:
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-sequenzyand confirm
Operations
This node supports the following operations:
Subscriber
| Operation | Description | | -------------------- | ------------------------------------------------------------ | | Create or Update | Creates a new subscriber or updates an existing one by email | | Get | Finds a subscriber by email address | | Delete | Deletes a subscriber by email |
Tag
| Operation | Description | | ---------- | --------------------------------------------------------- | | Add | Adds a tag to a subscriber (creates subscriber if needed) | | Remove | Removes a tag from a subscriber |
Event
| Operation | Description | | ----------- | ---------------------------------------- | | Trigger | Triggers a custom event for a subscriber |
Credentials
To use this node, you need a Sequenzy API key:
- Log in to your Sequenzy account
- Go to Settings > API Keys
- Create a new API key (it starts with
ek_) - In n8n, create a new credential of type Sequenzy API
- Paste your API key
Usage Examples
Create a Subscriber with Tags
- Add a Sequenzy node
- Select Subscriber as the resource
- Select Create or Update as the operation
- Enter the email address
- In Additional Fields, add tags (comma-separated)
Trigger an Event
- Add a Sequenzy node
- Select Event as the resource
- Select Trigger as the operation
- Enter the email and event name (e.g.,
purchase) - Add event properties in Additional Fields (e.g.,
amount: 99.99)
Add Tag When Form Submitted
Connect a webhook or form trigger to the Sequenzy node:
[Webhook] → [Sequenzy: Add Tag]Compatibility
- n8n version: 1.0.0+
- Node.js version: 18.0.0+
Resources
Development
Setup
# Clone the repository
git clone https://github.com/sequenzy/n8n-nodes-sequenzy.git
cd n8n-nodes-sequenzy
# Install dependencies
npm install
# Build
npm run build
# Development mode (watch)
npm run devTesting Locally
Build the node:
npm run buildLink to your n8n installation:
# In this directory npm link # In your n8n directory npm link n8n-nodes-sequenzyRestart n8n
Publishing
# Bump version
npm version patch
# Publish to npm
npm publishLicense
MIT
