Actions5
- Automation Actions
- Autoresponder Actions
- Contact Actions
- Send Mail Actions
Overview
This node integrates with the BizMail API to send emails programmatically. Specifically, the "Send Mail" resource with the "Send Mail" operation allows users to compose and dispatch emails using predefined sender identities managed in BizMail. This is useful for automating email notifications, marketing campaigns, or transactional emails directly from n8n workflows.
Practical examples include:
- Sending order confirmation emails automatically after a purchase.
- Dispatching newsletters or promotional content to subscribers.
- Notifying team members about workflow events or alerts.
Properties
| Name | Meaning |
|---|---|
| From Email Name or ID | Select the sender's email address from a list of verified senders or specify dynamically via expression. |
| To Email | The recipient's email address. |
| Bcc Email | Blind carbon copy recipients; multiple addresses can be comma-separated. |
| Cc Email | Carbon copy recipients; multiple addresses can be comma-separated. |
| Subject | The subject line of the email. |
| HTML Content | The body of the email in HTML format. Can be edited with an HTML editor. |
| Attachments Link | URLs to attachments to include in the email; multiple links can be comma-separated. |
Output
The node outputs JSON data representing the response from the BizMail API after attempting to send the email. This typically includes success status and any relevant metadata returned by the API.
If sending fails and "Continue On Fail" is enabled, the output will contain error information instead.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for BizMail (configured in n8n credentials).
- Needs network access to BizMail API endpoints.
- The node uses HTTP requests to communicate with BizMail's REST API.
Troubleshooting
- Missing or invalid sender: Ensure the "From Email Name or ID" is selected from the available verified senders. Using an unverified or incorrect sender may cause errors.
- Invalid recipient email: The "To Email" field must contain valid email addresses. Invalid formats or empty values will cause the API to reject the request.
- Attachment link issues: If attachment URLs are malformed or inaccessible, attachments may not be included properly.
- API authentication errors: Verify that the API key credential is correctly configured and has necessary permissions.
- Error messages: Errors from the API are passed through. Common errors include authentication failures, missing required fields, or rate limiting. Review the error message details in the node output to diagnose.
Links and References
- BizMail API Documentation (example placeholder, replace with actual)
- n8n Expressions Documentation
- n8n HTTP Request Node (for understanding underlying HTTP calls)