Skip to main content
All CollectionsTriggersAdvanced trigger control
Send or stop emails based on cart total
Send or stop emails based on cart total

Decide whether to send emails based on cart values above or below a specified value.

Updated over a year ago

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.

Did this answer your question?