Hello, we are trying to accomplish the following for the Gallery 6 website. When someone abandons a cart, send them an email after 30 mins with a discount code that is valid for 24 hours.
To achieve this, we have:
- Created a segment for customers that have abandoned their cart in the last 1 day using this filter logic:
WHERE abandoned_checkout_date >= -1d
AND last_order_date < -1d
-
Created a discount code with the above customer segment selected
-
Created a recovery email containing the code that is sent after 30 mins of cart abandonment
Unfortunately, the discount code seems to continue to work even after 24 hours. It seems the customer segment logic is not working as intended.
Any guidance on fixing the logic or a possible workaround would be appreciated. Thanks!