This is an n8n community node for MailerSend. It provides a simple way to send emails using the MailerSend service.
n8n is a fair-code licensed workflow automation platform.
Installation Operations Credentials Resources
Follow the installation guide in the n8n community nodes documentation.
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-mailersendin Enter npm package name - Agree to the risks of using community nodes: select I understand
- Select Install
- Send Email: Send an email using MailerSend
You need to create a MailerSend API key to use this node:
- Sign up for a MailerSend account
- Go to your MailerSend dashboard
- Navigate to Email API > API Tokens
- Click Create New Token
- Give your token a name and select the permissions you need (at minimum: "Email Send")
- Copy the API key and use it in n8n
You need the following installed on your development machine:
- git
- Node.js and npm. Minimum version Node 20. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL here. For Windows users, refer to Microsoft's guide to Install NodeJS on Windows.
- Install n8n with:
npm install n8n -g - Recommended: follow n8n's guide to set up your development environment.
These are the basic steps for working with the starter. For detailed guidance on creating and publishing nodes, refer to the documentation.
- Generate a new repository from this template repository.
- Clone your new repo:
git clone https://github.com/<your organization>/<your-repo-name>.git - Run
npm ito install dependencies. - Open the project in your editor.
- Browse the examples in
/nodesand/credentials. Modify the examples, or replace them with your own nodes. - Update the
package.jsonto match your details. - Run
npm run lintto check for errors ornpm run lintfixto automatically fix errors when possible. - Test your node locally. Refer to Run your node locally for guidance.
- Replace this README with documentation for your node. Use the README_TEMPLATE to get started.
- Update the LICENSE file to use your details.
- Publish your package to npm.
Refer to our documentation on creating nodes for detailed information on building your own nodes.