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-send-email-enhanced

v1.8.5

Published

Enhanced Send Email node for n8n with RFC-compliant unsubscribe headers and email compliance features

Readme

n8n-nodes-send-email-enhanced

Enhanced Send Email node for n8n with RFC-compliant unsubscribe headers for better email deliverability and Gmail/Yahoo 2025/2026 compliance.

✨ Features

  • 🔥 RFC 8058 One-Click Unsubscribe - Automatic Gmail/Yahoo 2024 compliance
  • 📧 List-Unsubscribe Headers - Proper unsubscribe URL and email support
  • 🏷️ Campaign Tracking - List-Id and X-Campaign-Id headers for analytics
  • ⚡ Enhanced SMTP - Optimized for high-volume email campaigns
  • 🎨 Beautiful UI - Professional interface following n8n design standards
  • 📋 Custom Headers - Full control over email headers
  • 📎 Attachments - Binary data attachment support

🚀 Quick Start

Installation

Option 1: Community Nodes (Recommended)

  1. Go to Settings > Community Nodes in n8n
  2. Click Install
  3. Enter: n8n-nodes-send-email-enhanced
  4. Click Install

Option 2: Manual Installation

# In your n8n installation directory
npm install n8n-nodes-send-email-enhanced

Basic Usage

  1. Add the node to your workflow
  2. Configure SMTP credentials (SMTP Enhanced)
  3. Set recipient and content
  4. Add unsubscribe options for compliance
  5. Execute your workflow

📧 Perfect for Email Campaigns

This node is specifically designed for:

  • Cold email outreach
  • Newsletter campaigns
  • Marketing communications

Gmail/Yahoo 2025/2026 Compliance

Automatically adds required headers:

  • List-Unsubscribe: <URL>, <mailto:address>
  • List-Unsubscribe-Post: List-Unsubscribe=One-Click
  • List-Id: <campaign.domain.com>
  • X-Campaign-Id: campaign-identifier

⚙️ Configuration

SMTP Credentials

Use standard n8n SMTP credentials. This node works with all major email providers:

| Provider | Host | Port | Security | |----------|------|------|----------| | Gmail | smtp.gmail.com | 587 | STARTTLS | | Outlook | smtp-mail.outlook.com | 587 | STARTTLS | | AWS SES | email-smtp.region.amazonaws.com | 587 | STARTTLS | | SendGrid | smtp.sendgrid.net | 587 | STARTTLS |

Node Options

Basic Fields:

  • From Email: Sender email address
  • To Email: Recipient email address
  • Subject: Email subject line
  • Email Format: Text, HTML, or Both

Options (for compliance):

  • CC Email: Carbon copy recipients
  • BCC Email: Blind carbon copy recipients
  • Reply To: Reply-to email address
  • Attachments: Binary data property names
  • Custom Headers: Additional email headers
  • List-Unsubscribe Email: Email for unsubscribe requests
  • List-Unsubscribe URL: HTTPS URL for unsubscribing
  • List-Unsubscribe-Post: RFC 8058 header value (prefilled)

📋 Example Usage

Basic Email

{
  "fromEmail": "[email protected]",
  "toEmail": "[email protected]", 
  "subject": "Welcome to our newsletter!",
  "emailFormat": "html",
  "html": "<h1>Welcome!</h1><p>Thanks for subscribing.</p>"
}

Compliant Marketing Email

{
  "fromEmail": "[email protected]",
  "toEmail": "[email protected]",
  "subject": "Monthly Newsletter - December 2024",
  "emailFormat": "html",
  "html": "<h1>Newsletter</h1><p>Your monthly update...</p>",
  "options": {
    "unsubscribeEmail": "[email protected]",
    "unsubscribeUrl": "https://yourdomain.com/unsubscribe?id=abc123",
    "listUnsubscribePost": "List-Unsubscribe=One-Click"
  }
}

🤝 Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Test thoroughly
  5. Submit a pull request

🆘 Support & Resources

📄 License

MIT License - see LICENSE file for details.


👨‍💻 Author

Reda El Kasraoui - InspireMail

Building better email experiences for the n8n community


⭐ If this node helps you, please consider giving it a star on GitHub!