Actions31
- Revenda Actions
- Instagram Actions
- Messenger Actions
- WhatsApp Actions
- Telegram Actions
- Mercado Livre Actions
- OLX Actions
- WebChat Actions
- Email Actions
Overview
This node allows you to send plain text emails via the NotificaMe Hub API. It is designed for scenarios where you need to automate email notifications, alerts, or simple communications directly from your n8n workflows. Typical use cases include sending transactional emails, notifying users of events, or integrating automated email messaging into business processes.
Practical examples:
- Sending a welcome email to new users.
- Notifying a team when a support ticket is created.
- Sending reminders or alerts based on workflow triggers.
Properties
Below are the supported input properties for the "Enviar Email (Somente Texto)" operation:
| Display Name | Type | Description |
|---|---|---|
| ID Do Canal | String | ID do canal de Email (Email channel ID). Required. |
| Email Do Destinatário | String | Endereço de email do destinatário (Recipient's email address). Required. |
| Assunto | String | Assunto do email (Email subject). Required. |
| Conteudo HTML | String (HTML Editor) | Conteúdo HTML do email (HTML content of the email body). Default provides a basic template. |
Output
The node outputs a json object containing the response from the NotificaMe Hub API after attempting to send the email. The structure typically includes:
{
"success": true,
"messageId": "string",
"status": "sent",
"details": { /* additional info if provided by API */ }
}
success: Indicates if the email was sent successfully.messageId: Unique identifier for the sent message.status: Status of the email (e.g., "sent").details: Any additional information returned by the API.
Note: The exact output fields may vary depending on the API response.
Dependencies
- External Service: Requires access to the NotificaMe Hub API.
- API Credentials: You must configure the
notificamehubApicredential in n8n. - Environment: No special environment variables required beyond standard n8n setup.
Troubleshooting
Common Issues:
- Invalid Channel ID: If the "ID Do Canal" is incorrect, the API will likely return an error indicating the channel was not found.
- Missing or Invalid Recipient Email: Ensure the recipient's email address is valid and properly formatted.
- Authentication Errors: If credentials are missing or invalid, you'll receive authentication/authorization errors from the API.
- HTML Content Issues: Malformed HTML in "Conteudo HTML" might cause rendering issues in the received email.
Error Messages & Resolutions:
"Channel not found": Double-check the "ID Do Canal" value."Invalid recipient email": Verify the format and existence of the recipient's email."Unauthorized"or"Invalid API key": Reconfigure your NotificaMe Hub API credentials in n8n.