Package Information
Released: 7/4/2025
Downloads: 1 weekly / 14 monthly
Latest Version: 0.1.4
Author: Bizfly
Available Nodes
Documentation
n8n-nodes-bizmail
This is a custom n8n node that integrates with Bizfly Mail, enabling you to send emails, manage automations, and handle contacts directly within your n8n workflows.
Features
- Send Mail: Dispatch emails using Bizfly Mail's API.
- Automation: Trigger and manage email automation workflows.
- Contact Management: Add or update contacts in your Bizfly Mail lists.
Prerequisites
Before using this node, ensure you have:
- An active Bizfly Mail account.
- Your
app_keyandproject_tokenfrom Bizfly Mail. - n8n installed (version 0.200.0 or higher is recommended).
Installation
Via npm
To install the node globally:
npm install -g n8n-nodes-bizmail
To install the node locally within your n8n project:
npm install n8n-nodes-bizmail
Linking for Development
If you're developing or modifying the node:
git clone https://github.com/protuanna/n8n-nodes-bizmail.git
cd n8n-nodes-bizmail
npm install
npm run build
npm link
Then, in your n8n installation directory:
npm link n8n-nodes-bizmail
Restart n8n to apply the changes.
Usage
Credentials Setup
Before using the node, set up your Bizfly Mail credentials in n8n:
- Go to Credentials in n8n.
- Click New Credential and select Bizfly Mail API.
- Enter your
app_key,project_token, andbaseUrl. - Save the credentials.
Node Parameters
- From Email Name or ID: Enter in the format
Name <email@example.com>. - To Email: Recipient's email address.
- Bcc Email: Blind carbon copy recipients (comma-separated).
- Cc Email: Carbon copy recipients (comma-separated).
- Title: Email subject.
- HTML Content: Body of the email in HTML.
- Attachments Link: URLs to attachments (comma-separated).
Development
To contribute or modify the node:
- Fork the repository.
- Create a new branch for your changes.
- Make changes and ensure code quality:
npm run lint
- Build the project:
npm run build
- Test your changes within n8n.
- Submit a pull request with a clear description.
License
This project is licensed under the MIT License.
Acknowledgments
This node is based on the n8n-nodes-starter template by the n8n community.