Mechanic is a development and ecommerce automation platform for Shopify. :)
Super basic, super useful. :) Get an email alert whenever a customer account is created.
Runs Occurs whenever a customer is created. Configuration includes to, subject, and body.
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?)
shopify/customers/create
{% action "email" %} { "to": {{ options.to__email_required | json }}, "subject": {{ options.subject__required | json }}, "body": {{ options.body__multiline_required | strip | newline_to_br | json }}, "reply_to": {{ shop.customer_email | json }}, "from_display_name": {{ shop.name | json }} } {% endaction %}
New customer: {% if customer.email %}{{ customer.email }}{% else %}#{{ customer.id }}{% endif %}
Hey there! A new customer has signed up. Here are their details: Name: {% capture full_name %}{{ customer.first_name }} {{ customer.last_name }}{% endcapture %}{% if full_name != blank %}{{ full_name | strip }}{% else %}(none){% endif %} Email: {{ customer.email | default: "(none)" }} Phone: {{ customer.phone | default: "(none)" }} {{ customer.note | strip }} <a href="https://{{ shop.myshopify_domain }}/admin/customers/{{ customer.id }}" target="_blank">Manage in Shopify</a> Thanks, - Mechanic, for {{ shop.name }}