All Collections
Email
How do i create a drip email for recipients who opened more than twice?
How do i create a drip email for recipients who opened more than twice?
Andrew Pierno avatar
Written by Andrew Pierno
Updated over a week ago

You can use {{hasOpened}} and {{hasClicked}} within the email. The value will be true or false depending on if that prospect has opened a previous email or has clicked a link in a previous email.

This means you can do something like this to send custom or different messages to propspects whether they've opened a previous email or not:

{% if hasOpened == true %}
โœ… You Opened one of our previous emails!
{% else %}
โŒ You did not open one of our previous emails!
{% endif %}


Did this answer your question?