Actions115
- Course Actions
- Bundle Actions
- Course Grade Actions
- Course Grade Detail Actions
- Course Teacher Actions
- Email Actions
- Email Campaign Actions
- Email Campaign Course Actions
- Email Campaign Excluded Course Actions
- Email Campaign Excluded List Actions
- Enroll Actions
- Email Campaign Excluded Plan Actions
- Email Campaign List Actions
- Email Campaign Plan Actions
- Email List Actions
- MindzPay Account Actions
- MindzPay Invoice Actions
- MindzPay Payment Actions
- MindzPay Subscription Actions
- Subscription Actions
- Team Actions
- User Actions
Overview
The "Email Create" operation in this Mindz node allows users to add a new email contact to a specified email list within the Mindz platform. This is useful for managing mailing lists, building contact databases, and automating email marketing campaigns.
Typical use cases include:
- Adding new subscribers collected from web forms or CRM systems.
- Importing contacts into specific email lists for targeted communication.
- Automating subscription management workflows by programmatically creating email entries.
For example, you might use this node to add a new user’s email address along with their first and last name to a newsletter list, optionally marking them as subscribed or unsubscribed.
Properties
| Name | Meaning |
|---|---|
| Email List ID | The unique identifier of the email list to which the new email contact will be added. |
| Email Address | The email address of the contact to create (e.g., name@email.com). |
| First Name | (Optional) The first name of the contact. |
| Last Name | (Optional) The last name of the contact. |
| Is Subscribed | Boolean flag indicating whether the contact should be marked as subscribed to the list. |
Output
The node outputs JSON data representing the newly created email contact record. This typically includes fields such as the contact's email address, associated list ID, subscription status, and any other metadata returned by the Mindz API.
No binary data output is expected from this operation.
Dependencies
- Requires an active connection to the Mindz API via an OAuth2-based credential.
- The node depends on proper configuration of the Mindz API credentials within n8n.
- Network connectivity to the Mindz service endpoint is necessary.
Troubleshooting
Common Issues:
- Invalid or missing Email List ID: Ensure the provided list ID exists and is accessible.
- Invalid email format: The email address must be properly formatted.
- Authentication errors: Verify that the OAuth2 credentials are valid and have not expired.
- Permission issues: The authenticated user must have rights to modify the specified email list.
Error Messages:
- "Invalid Email List ID": Check that the list ID is correct and corresponds to an existing list.
- "Unauthorized" or "Authentication failed": Re-authenticate or update the API credentials.
- "Email already exists": The email may already be present in the list; consider using an update operation instead.
Resolving these usually involves verifying input parameters, refreshing credentials, and ensuring API permissions.
Links and References
- Mindz API Documentation (hypothetical link)
- n8n OAuth2 Credential Setup Guide
- General best practices for email list management and GDPR compliance.