ActionMailjetUpdated September 2026
How do I send email via Mailjet?
Short answer: You can mailjet send email in Mailjet by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Mailjet Mailjet Send Email action to a workflow, map its 6 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Inputs
The fields this action accepts.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
From Email fromEmail | Required | From Email | |
From Name fromName | string | Optional | From Name |
To Email toEmail | Required | To Email | |
To Name toName | string | Optional | To Name |
Subject subject | string | Required | Message subject line. |
HTML Body htmlBody | html | Required | HTML Body |
Sample request
{"fromEmail": "{{trigger.from}}","fromName": "{{trigger.fromName}}","toEmail": "{{trigger.from}}","toName": "{{trigger.toName}}","subject": "e.g. Quick update"}
Returns
{"Messages": [{"To": [{"Email": "recipient@example.com","MessageID": 123456}],"Status": "success"}]}
Use these fields in downstream nodes for routing, logging, or error handling.
Triggered by
Apps that pair well as the trigger for Mailjet Send Email.
Any of these apps can fire this action as part of a workflow.
FAQ
Questions about Mailjet Send Email.
What does the Mailjet Send Email action do in Mailjet?
Transactional send with HTML/text body and template support. The European-headquartered alternative to SendGrid/Mailgun with strong EU-deliverability reputation.
What inputs does Mailjet Send Email require?
Required: From Email, To Email, Subject, HTML Body. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Mailjet returns an error?
The run history shows the failed step with its input and the error message Mailjet returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does Mailjet Send Email support batch operations?
Run Mailjet Send Email inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Mailjet's rate limits.
More actions