Stop email sends
Stop email send if cart total is over specified price
Add the following code in the Advanced box on the Triggers page:
result.proceed = true;
if (cart.cv > 100.00) { result.proceed = false; }
Change 100.00
in the code above to the total value over which you want to stop emails sending. For example, if you change it to 800.00 and the cart total is £800.01 or more, regardless of individual product values, the email won't be sent.
Stop email send if cart total is below specified price
Add the following code in the Advanced box on the Triggers page:
result.proceed = true;
if (cart.cv < 100.00) { result.proceed = false; }
Change 100.00
in the code above to the total value below which you want to stop emails sending. For example, if you change it to 800.00, and the cart total is £799.99 or less, regardless of individual product values, the email won't be sent.
Send emails based on specified criteria
Only send email send if cart total is over specified price
Add the following code in the Advanced box on the Triggers page:
result.proceed = false;
if (cart.cv > 100.00) { result.proceed = true; }
Change 100.00
in the code above to the total value over which you want to send emails. For example, if you change it to 800.00 and the cart total is £800.01 or more, regardless of individual product values, the email will be sent.
Only send email send if cart total below specified price
Add the following code in the Advanced box on the Triggers page:
result.proceed = false;
if (cart.cv < 100.00) { result.proceed = true; }
Change 100.00
in the code above to the total value below which you want to stop emails sending. For example, if you change it to 800.00 and the cart total is £799.99 or less, regardless of individual product values, the email will be sent.