node-red-supemail-node 1.0.5
A Node-RED node for sending the latest file as an email attachment
Node-RED Latest File Email Node
A Node-RED node that monitors a directory and sends the latest file as an email attachment.
Features
- Monitors a specified directory for files
- Sends the latest file as an email attachment
- Configurable email server settings
- Configurable sender and multiple recipients
- Configurable email subject and body
- Detailed error handling and logging
- Secure password storage
Installation
Via Node-RED Palette Manager
- Open Node-RED
- Click Menu → Manage Palette
- Switch to "Install" tab
- Search for "node-red-email-node"
- Click Install
Manual Installation
cd ~/.node-red
npm install node-red-email-node
Configuration
Email Server Settings
- Double click the node to open configuration
- Click the pencil icon next to "Email Config"
- Configure the following:
- Name: A name for this configuration
- Host: SMTP server hostname (e.g., smtp.gmail.com)
- Port: SMTP server port (default: 587)
- Secure: Use SSL/TLS (check for port 465)
- User: SMTP username
- Password: SMTP password
- From: Sender email address
- To: Recipient email addresses (multiple addresses can be separated by commas)
- Subject: Email subject
- Text: Email body text
- Watch Directory: Directory to monitor for files
Node Settings
- Name: Optional name for the node
Usage
- Deploy the node
- The node will trigger when it receives any input message
- It will find the latest file in the configured directory
- The file will be sent as an attachment to all configured email addresses
Input
Any message will trigger the node to send the latest file.
Output
The node outputs a message with the following properties:
{
"payload": {
"success": true,
"messageId": "message-id",
"file": "filename.ext",
"recipients": ["[email protected]", "[email protected]"]
}
}
Example Flow
[
{
"id": "trigger-node",
"type": "inject",
"name": "Trigger",
"props": [
{
"p": "payload"
}
],
"repeat": "",
"crontab": "",
"once": false,
"wires": [
[
"email-node"
]
]
},
{
"id": "email-node",
"type": "email-node",
"name": "Send Latest File",
"emailConfig": "email-config-node",
"wires": [
[
"debug-node"
]
]
}
]
Development
Prerequisites
- Node.js 14 or later
- npm 6 or later
Setup
# Clone the repository
git clone https://github.com/yourusername/node-red-email-node.git
# Install dependencies
cd node-red-email-node
npm install
# Run tests
npm test
Testing
The node includes comprehensive tests:
- File system operations
- Email transport configuration
- Email sending functionality
- Error handling
Run tests with:
npm test
Troubleshooting
Common Issues
No files found
- Check if the watch directory exists
- Verify directory permissions
Email not sending
- Verify SMTP server settings
- Check credentials
- Ensure network connectivity
Authentication failed
- Double-check username and password
- For Gmail, you may need an App Password
Multiple recipients not working
- Ensure email addresses are separated by commas
- Check for any spaces before or after email addresses
- Verify all email addresses are valid
Debug Mode
Enable debug mode in Node-RED to see detailed logs:
- Open Node-RED settings
- Enable debug mode
- Deploy and check debug messages
License
MIT
Contributing
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request