🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

WooCommerce to Mautic, contacts always campaign ready

Lisa Granqvist Partner Workflow Automation Expert

New customer comes in. Then the quiet scramble starts: export from WooCommerce, clean the fields, import into Mautic, hope it didn’t create a duplicate, then fix segments that somehow drifted again.

Marketing managers feel it when welcome campaigns fire late. Store owners notice it when reporting looks “off” and nobody trusts the list. And if you run an agency, you already know the awkward client question: “Why didn’t this customer get the onboarding emails?” This WooCommerce Mautic sync automation makes new customers campaign-ready automatically.

Below, you’ll see exactly how the workflow works, what it automates, and what you can tweak so contacts land in the right state inside Mautic every time.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: WooCommerce to Mautic, contacts always campaign ready

The Problem: New Customers Don’t Reach Mautic Cleanly

WooCommerce is great at taking orders, but it’s not your marketing brain. Mautic is built for campaigns, segmentation, and timing. The problem is the handoff in the middle. People export CSVs “later,” paste data into the wrong fields, or import the same person twice because their email had a space, a different casing, or an old record already exists. Then automations misfire. Someone gets the wrong sequence, or nothing at all, and you only notice after a support ticket shows up.

It adds up fast. And it’s not just time. It’s trust in your data, and confidence in your campaigns.

  • You end up doing list hygiene every week because duplicates creep in from manual imports.
  • Segments drift out of date, which means “new customer” messaging hits people days late.
  • Teams hesitate to build automations because they don’t trust the contact record is complete.
  • Small formatting issues (missing last name, weird phone fields) turn into hours of cleanup.

The Solution: Add or Update Mautic Contacts the Moment WooCommerce Creates Them

This workflow starts the second a new customer is added in WooCommerce. n8n pulls the customer details, then checks Mautic to see if that email already exists as a contact. If it’s truly new, the workflow creates a fresh contact in Mautic with the right fields mapped so your campaigns have what they need. If the contact already exists, it updates that record instead of creating a duplicate, which keeps your segments accurate and your history intact. The end result is simple: Mautic stays aligned with WooCommerce, without you touching exports, imports, or spreadsheets.

The workflow begins with a WooCommerce customer trigger. Then it searches Mautic, evaluates whether the person is new, and routes into either “create” or “update.” Finally, the contact in Mautic is ready for segmentation and campaign triggers right away.

What You Get: Automation vs. Results

Example: What This Looks Like

Say your store gets about 20 new customers a week. Manually, a typical flow is export (10 minutes), clean the CSV (20 minutes), import into Mautic (15 minutes), then spot-check duplicates and fields (15 minutes). That’s roughly an hour per week, and it spikes during promos. With this workflow, “after” is basically zero hands-on time: WooCommerce triggers it instantly, n8n processes the contact in moments, and Mautic has a clean record ready for your welcome campaign.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • WooCommerce to trigger when a customer is added
  • Mautic to create or update contact records
  • WooCommerce + Mautic credentials (set up inside n8n’s Credentials)

Skill level: Beginner. You’ll connect accounts and confirm a few field mappings.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

A new customer is created in WooCommerce. That event is the trigger, so you’re not waiting for a daily export or someone to remember a checklist.

Mautic is searched for a matching contact. The workflow looks up the customer (typically by email) so it can decide if this is a brand-new person or someone who already exists in your marketing database.

The workflow chooses “create” or “update.” If the contact is new, it generates a contact in Mautic. If the contact exists, it modifies the existing record instead, which helps prevent duplicates and keeps activity history in one place.

Your campaigns can react immediately. Once the contact is in Mautic (clean and up to date), your segments, tags, and welcome sequences can trigger right away.

You can easily modify the contact fields that get written to Mautic to match your segmentation rules. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the WooCommerce Trigger

Set up the workflow to listen for customer updates in WooCommerce and kick off the sync process.

  1. Add the Ecommerce Customer Trigger node as your trigger.
  2. Set Event to customer.updated.
  3. Credential Required: Connect your wooCommerceApi credentials in Ecommerce Customer Trigger.

Step 2: Connect Mautic for Contact Lookup

Search Mautic for an existing contact using the customer email from WooCommerce.

  1. Add the Search Existing Contact node and connect it to Ecommerce Customer Trigger.
  2. Set Operation to getAll and Authentication to oAuth2.
  3. In Options → Search, set the value to ={{$json["email"]}}.
  4. Credential Required: Connect your mauticOAuth2Api credentials in Search Existing Contact.

Step 3: Add Routing Logic for New vs Existing Contacts

Use conditional logic to determine whether to create a new contact or update an existing one.

  1. Add the Evaluate New Contact node and connect it to Search Existing Contact.
  2. Configure Conditions → String with Value 1 set to ={{$json["id"]}} and Operation set to isEmpty.
  3. Route the true output (empty ID) to Generate New Contact.
  4. Route the false output (ID exists) to Modify Existing Contact.

This matches the execution flow: Ecommerce Customer TriggerSearch Existing ContactEvaluate New Contact, which then branches to Generate New Contact or Modify Existing Contact.

Step 4: Configure Contact Creation and Updates in Mautic

Map WooCommerce customer fields into Mautic for both create and update actions.

  1. In Generate New Contact, set Email to ={{$node["Ecommerce Customer Trigger"].json["email"]}}.
  2. Set Company to ={{$node["Ecommerce Customer Trigger"].json["billing"]["company"]}}, First Name to ={{$node["Ecommerce Customer Trigger"].json["first_name"]}}, and Last Name to ={{$node["Ecommerce Customer Trigger"].json["last_name"]}}.
  3. Credential Required: Connect your mauticOAuth2Api credentials in Generate New Contact.
  4. In Modify Existing Contact, set Operation to update and Contact ID to ={{$json["id"]}}.
  5. Under Update Fields, set First Name to ={{$node["Ecommerce Customer Trigger"].json["first_name"]}} and Last Name to ={{$node["Ecommerce Customer Trigger"].json["last_name"]}}.
  6. Credential Required: Connect your mauticOAuth2Api credentials in Modify Existing Contact.

⚠️ Common Pitfall: If the search node returns multiple results, ensure the workflow is handling the first match correctly. The current setup assumes a single matching contact by email.

Step 5: Test and Activate Your Workflow

Validate the workflow with a real customer update and then turn it on for production use.

  1. Click Execute Workflow and trigger a customer update in WooCommerce to send a test event.
  2. Confirm that Search Existing Contact returns a result and that Evaluate New Contact routes correctly.
  3. Verify that a new Mautic contact is created in Generate New Contact or updated in Modify Existing Contact.
  4. When satisfied, toggle the workflow to Active for live syncing.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Mautic credentials can expire or need specific permissions. If things break, check the n8n Credentials screen and Mautic API access settings first.
  • WooCommerce API keys sometimes lack read access for customers, especially on locked-down stores. Confirm the key permissions in WooCommerce settings before chasing “random” workflow failures.
  • Email formatting is the silent killer. Trim whitespace and standardize casing in your mapping, or you’ll still get duplicates that look “almost identical” in Mautic.

Frequently Asked Questions

How long does it take to set up this WooCommerce Mautic sync automation?

About 30 minutes if your WooCommerce and Mautic credentials are ready.

Do I need coding skills to automate WooCommerce Mautic sync?

No. You’ll connect WooCommerce and Mautic, then confirm which customer fields map into your contact fields.

Is n8n free to use for this WooCommerce Mautic sync workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in any hosting costs if you self-host, plus whatever your Mautic setup already requires.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I customize this WooCommerce Mautic sync workflow for adding tags or segments?

Yes, but you’ll do it in Mautic-side field mapping. Most people customize the “Generate New Contact” and “Modify Existing Contact” Mautic steps to set tags, a segment field, or a custom “source” value like “WooCommerce.” If you also store billing country, lifetime value, or customer type in WooCommerce, you can map those into custom fields too. That’s usually enough to trigger the right welcome series automatically.

Why is my Mautic connection failing in this workflow?

Usually it’s expired or incorrect API credentials in n8n. Update the Mautic credential, then re-test the “Search Existing Contact” step because it’s the first one that depends on Mautic. If it still fails, check that the Mautic user/token you’re using can read and write contacts. Rate limits are less common here, but they can show up during large backfills.

How many customers can this WooCommerce Mautic sync automation handle?

Plenty for most small stores. On n8n Cloud, your limit is based on executions per month (Starter supports a typical small-business volume, and higher plans handle more). If you self-host, there’s no execution cap, but your server needs enough memory and CPU. In practice, this workflow handles customers as they come in since it runs once per new customer.

Is this WooCommerce Mautic sync automation better than using Zapier or Make?

Often, yes. The big win is the built-in “search then create or update” logic, which is where duplicates usually get prevented, and n8n handles that kind of branching cleanly. Self-hosting is also a real advantage if you want predictable costs as volume grows. Zapier and Make can still be fine if you only need a simple 2-step push and you don’t care about updating existing contacts. If you’re unsure, Talk to an automation expert and you’ll get a straight recommendation based on your list size and workflow complexity.

Once this is live, new customers quietly show up in Mautic the way you wish they always did. Less cleanup. Better timing. Honestly, it’s one of those automations you set up once and stop thinking about.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal