Send new customer signups to IFTTT, with Mechanic.

Mechanic is a development and ecommerce automation platform for Shopify. :)

Send new customer signups to IFTTT

Send yourself a text message, or blink your lights, or do whatever you like! This task is an example, more than anything, of what you can do by connecting Mechanic and IFTTT. Follow our guide (in the task documentation) to learn how to set up text message alerts for customer signups, and then customize any and every part of this task to your liking.

Runs Occurs whenever a customer is created. Configuration includes ifttt event, ifttt key, value1, value2, and value3.

15-day free trial – unlimited tasks

Documentation

Send yourself a text message, or blink your lights, or do whatever you like! This task is an example, more than anything, of what you can do by connecting Mechanic and IFTTT. Follow our guide (in the task documentation) to learn how to set up text message alerts for customer signups, and then customize any and every part of this task to your liking.

To get started with this task, follow our complete guide: Triggering IFTTT applets.

If you want to get started more directly, just fill in your IFTTT key, available in your IFTTT Maker webhook settings.

Developer details

Mechanic is designed to benefit everybody: merchants, customers, developers, agencies, Shopifolks, everybody.

That’s why we make it easy to configure automation without code, why we make it easy to tweak the underlying code once tasks are installed, and why we publish it all here for everyone to learn from.

(By the way, have you seen our documentation? Have you joined the Slack community?)

Open source
View on GitHub to contribute to this task
Subscriptions
shopify/customers/create
Tasks use subscriptions to sign up for specific kinds of events. Learn more
Options
ifttt event (required), ifttt key (required), value1 (required), value2, value3
Code
{% action "http" %}
  {
    "method": "post",
    "url": "https://maker.ifttt.com/trigger/{{ options.ifttt_event__required }}/with/key/{{ options.ifttt_key__required }}",
    "body": {
      "value1": {{ options.value1__required | json }},
      "value2": {{ options.value2 | json }},
      "value3": {{ options.value3 | json }}
    }
  }
{% endaction %}
Task code is written in Mechanic Liquid, an extension of open-source Liquid enhanced for automation. Learn more
Defaults
IFTTT event
shopify_customer_created
Value1
{{ customer.email }}