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, Gurus, 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.

Open source
View on GitHub to contribute to this task
Events
Occurs whenever a customer is created (shopify/customers/create)
Options
ifttt event (required), ifttt key (required), value1 (required), value2, value3
Script
{% 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 %}
Mechanic tasks are written in Liquid, which makes them easy to write and easy to modify. Learn more about our platform.
Defaults
IFTTT event
shopify_customer_created
Value1
{{ customer.email }}