Package Information
Downloads: 0 weekly / 0 monthly
Latest Version: 0.1.5
Author: Templit
Available Nodes
Documentation
n8n-nodes-templit
This is an n8n community node for Templit - a centralized email template management platform.
Features
- Render Template - Select a template, fill in variables, get the rendered result
- Get All Templates - List all available templates
- Get Template - Fetch a single template by ID
- Dynamic Variable Loading - Variables are automatically extracted from templates
Installation
Community Nodes (Recommended)
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-templit - Agree to the risks and click Install
Manual Installation
npm install n8n-nodes-templit
Credentials
You need a Templit API key to use this node:
- Log into your Templit instance
- Go to API Keys
- Create a new API key (starts with
tpl_) - In n8n, create new credentials of type Templit API
- Enter your Templit instance URL and API key
Usage
Render Template
- Add the Templit node to your workflow
- Select Render Template operation
- Choose a template from the dropdown (templates are loaded from your Templit instance)
- Fill in the template variables (e.g.
{{name}},{{email}}) - Execute - you'll receive the rendered subject and body
Output
The render operation returns:
{
"templateId": "abc123",
"templateName": "Welcome Email",
"subject": "Welcome John!",
"body": "Hello John, welcome to our platform!",
"variables": {
"name": "John"
}
}
You can then use this output to send emails via Gmail, SMTP, or any other email node.
Example Workflow
[Trigger] → [Templit: Render Template] → [Gmail: Send Email]
- Trigger receives data with customer name
- Templit renders the "Welcome Email" template with the name
- Gmail sends the rendered email
Resources
License
MIT