The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "721",
"name": "Receive updates on form submission in Mautic and send SMS notification",
"nodes": [
{
"name": "Mautic Trigger",
"type": "n8n-nodes-base.mauticTrigger",
"position": [
510,
300
],
"parameters": {
"events": [
"mautic.form_on_submit"
]
},
"credentials": {
"mauticApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Twilio",
"type": "n8n-nodes-base.twilio",
"position": [
710,
300
],
"parameters": {
"to": "={{$node[\"Mautic Trigger\"].json[\"mautic.form_on_submit\"][0][\"submission\"][\"results\"][\"phone_number\"]}}",
"from": "1234",
"message": "=Hey, {{$node[\"Mautic Trigger\"].json[\"mautic.form_on_submit\"][0][\"submission\"][\"results\"][\"first_name\"]}} \ud83d\udc4b\nThank you for signing up for the Webinar - Getting Started with n8n. The webinar will start at 1800 CEST on 31st October 2020.\nSee you there!"
},
"credentials": {
"twilioApi": "<your credential>"
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"Mautic Trigger": {
"main": [
[
{
"node": "Twilio",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
mauticApitwilioApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Receive updates on form submission in Mautic and send SMS notification. Uses mauticTrigger, twilio. Event-driven trigger; 2 nodes.
Source: https://github.com/tommyshum/n8n_template_library/blob/87d0b7db31db00fcf781424ca7d9e86f1c9a9e1b/templates/official/template_721/workflow.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Report Examples Demo. Event-driven trigger; 7 nodes.
Check if a Twitch Stream is Live. Uses graphql. Event-driven trigger; 7 nodes.
Automatically prune n8n execution history. Uses n8n. Event-driven trigger; 7 nodes.
Google Sheets UI for n8n Workflow. Uses manualTrigger, stickyNote, splitInBatches, googleSheets. Event-driven trigger; 6 nodes.
Reusable and Independently Testable Sub-workflow. Uses executeWorkflowTrigger, manualTrigger, stickyNote. Event-driven trigger; 6 nodes.