Tasks
Tasks are automation rules that respond to Shopify events and perform actions like tagging, emailing, and syncing data.
Example
shopify/customers/create{% action "email" %}
{
"to": {{ options.email_recipient__email_required | json }},
"subject": {{ options.email_subject__required | json }},
"body": {{ options.email_body__multiline_required | newline_to_br | json }},
"from_display_name": {{ shop.name | json }}
}
{% endaction %}
Last updated
Was this helpful?