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": "13",
"name": "Receive updates when a form is submitted in Mautic, and send a confirmation SMS",
"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
About this workflow
Receive updates when a form is submitted in Mautic, and send a confirmation SMS. Uses mauticTrigger, twilio. Event-driven trigger; 2 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →