Custom n8n node for Enginemailer API
npm install n8n-nodes-enginemailerAPIKey and save it in the credential section of this node.
n8n-node-dev:
bash
npm install
npm run build
n8n-node-dev link
`
2. In the n8n UI:
- Create new credentials of type: Enginemailer API
- Add the Enginemailer node to your workflow
- Select Resource and Operation
- Provide required JSON body fields under Parameters (JSON)
---
๐งช Testing
You can test the node with this simple operation:
- Resource: transactional
- Operation: sendTransactionalEmail
- Parameters:
`json
{
"UserKey": "your_user_key",
"ToEmail": "test@example.com",
"Subject": "Test",
"SenderEmail": "your_verified_email@yourdomain.com",
"SubmittedContent": "Hello from n8n!",
"SenderName": "n8n Bot"
}
``