Description
n8n-nodes-smtp-advanced
Advanced SMTP node for n8n with support for:
- Reply-To headers: Send emails with custom Reply-To addresses
- Custom headers: Add any custom email headers
- Forward emails: Forward existing emails to other recipients
- Standard email sending: Send regular emails with attachments
Installation
Community Nodes (Recommended)
1. Go to Settings > Community Nodes in n8n
2. Select Install
3. Enter n8n-nodes-smtp-advanced
4. Agree to the risks and install
Manual Installation
npm install n8n-nodes-smtp-advanced
Configuration
Add SMTP credentials in n8n:
Operations
Send Email
Send a regular email with optional attachments and custom headers.
Parameters:
Reply To Email
Reply to an existing email with proper threading headers.
Parameters:
Forward Email
Forward an email to other recipients.
Parameters:
Example Usage
Simple Email with Reply-To
{
"operation": "send",
"fromEmail": "sender@example.com",
"toEmail": "recipient@example.com",
"subject": "Test Email",
"text": "Hello World",
"replyTo": "support@example.com"
}
Reply with Custom Headers
{
"operation": "reply",
"messageId": "",
"references": " ",
"fromEmail": "support@example.com",
"toEmail": "customer@example.com",
"subject": "Re: Your inquiry",
"html": "Thank you for contacting us...
"
}
License
MIT