npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-mailat

v1.0.3

Published

n8n community node for Mailat — self-hosted email platform. Send transactional emails, manage inbox, react to email events.

Readme

n8n-nodes-mailat

npm version npm downloads License: MIT

Community n8n node for Mailat — the open-source, self-hosted email platform. Send transactional emails, manage your inbox, and react to email events from n8n workflows.

What is Mailat?

Mailat is a full-featured, open-source email platform you can self-host. It includes transactional email sending via AWS SES, a complete inbox with IMAP/SMTP, contacts, campaigns, automations, and more. Deploy it instantly on Dublyo PaaS or run it on your own server.

Prerequisites

  • A running Mailat instance
  • An API key from your Mailat dashboard (Settings > API Keys)
  • n8n v1.0.0 or later

Installation

Community Nodes (Recommended)

In your n8n instance, go to Settings > Community Nodes > Install and enter:

n8n-nodes-mailat

Manual

cd ~/.n8n
npm install n8n-nodes-mailat

Restart n8n after installing.

Credential Setup

  1. In n8n, go to Credentials > New Credential > Mailat API
  2. Base URL — your Mailat instance URL (e.g., https://mail.example.com)
  3. API Key — your API key starting with ue_...
  4. Click Test to verify the connection

Nodes

Mailat (Action Node)

Perform operations on your Mailat instance.

| Resource | Operation | Description | |----------|-----------|-------------| | Email | Send | Send a transactional email | | Email | Send Batch | Send multiple emails at once | | Email | Get | Get email status and delivery events | | Email | Cancel | Cancel a scheduled email | | Inbox | List | List inbox emails with filtering | | Inbox | Get | Get full email content | | Inbox | Get Thread | Get an email conversation thread | | Inbox | Search | Search inbox by query string | | Inbox | Reply | Reply to an email via compose | | Inbox | Mark Read | Mark emails as read or unread | | Inbox | Delete | Delete emails | | Inbox | Star | Star or unstar emails | | Domain | List | List all configured domains | | Domain | Get | Get domain details and DNS status | | Identity | List | List all email identities | | Identity | Get | Get identity details |

Mailat Trigger (Webhook Node)

Starts a workflow when an event occurs in Mailat. Select one or more events to listen for.

| Event | Description | |-------|-------------| | email_received | New email received in inbox | | email_sent | Email sent via transactional API | | contact_created | New contact created | | contact_updated | Contact updated | | contact_deleted | Contact deleted | | campaign_sent | Campaign started sending | | bounce_received | Email bounced (hard or soft) | | complaint_received | Spam complaint received |

Example Workflows

Auto-reply to incoming emails

  1. Mailat Trigger (event: email_received)
  2. IF node — check if subject contains "support"
  3. Mailat node — Email > Send an auto-reply

Sync new contacts to your CRM

  1. Mailat Trigger (event: contact_created)
  2. HTTP Request node — POST contact data to your CRM API

Bounce alerting

  1. Mailat Trigger (event: bounce_received)
  2. Slack node — notify your team about the bounce
  3. Mailat node — look up the contact details

Forward incoming emails to Slack

  1. Mailat Trigger (event: email_received)
  2. Slack node — post sender, subject, and preview to a channel

Compatibility

  • n8n v1.0.0+
  • Mailat v1.0.0+

Resources

Contributing

Found a bug or want a new feature? Open an issue or PR on GitHub.

License

MIT