Skip to content

Latest commit

 

History

History

remind-customers-after-x-days-about-unpaid-orders

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Remind customers after x days about unpaid orders

Tags: Customers, Reminder, Schedule, Unpaid

This task wait for a configurable number of days (or hours!) after an order placed, and – if the order is still unpaid – emails the customer, and optionally adds a tag to the order. This task only sends one email – it does not send repeating reminders.

Default options

{
  "email_subject__required": "Don't forget! Order #{{ order.order_number }} still needs to be paid",
  "email_body__multiline_required": "Hi there,\n\nYour payment is still required! Please get in touch at {{ shop.customer_email }} to proceed.\n\nThanks,\n{{ shop.name }}",
  "tag_to_add_to_the_order": null,
  "number_of_days_to_wait__number_required": 7,
  "use_hours_instead_of_days__boolean": false
}

Learn about task options in Mechanic

Subscriptions

shopify/orders/create+{{ options.number_of_days_to_wait__number_required | default: 7 }}.{% if options.use_hours_instead_of_days__boolean %}hours{% else %}days{% endif %}

Learn about event subscriptions in Mechanic

Documentation

This task wait for a configurable number of days (or hours!) after an order placed, and – if the order is still unpaid – emails the customer, and optionally adds a tag to the order. This task only sends one email – it does not send repeating reminders.

Installing this task

Find this task in the library at tasks.mechanic.dev, and use the "Try this task" button. Or, import this task's JSON export – see Importing and exporting tasks to learn how imports work.

Contributions

Found a bug? Got an improvement to add? Start here: ../../CONTRIBUTING.md.

Task requests

Submit your task requests for consideration by the Mechanic community, and they may be chosen for development and inclusion in the task library!