"Prohibited Until" variable in Templates

Completed 2 subscribers FR100080

Description
Availability of a "prohibited until" variable that can be used in Liquid templates in Promo (to display to winners if they are prohibited, and until what date, when they receive a prize confirmation email).
Product

Promo

Release Path
Release Notes
You can now access these Liquid variables on the "listener" object inside templates: "prohibited?" (returns true or false), "prohibited_reason" (returns a string containing the first matching prohibition rule reason), and "prohibited_until" (returns a string containing a date depending on your instance date format settings). Example usage in a HTML email template: {%- if listener.prohibited? -%}

Due to our terms and conditions, you're unable to win from us again until {{listener.prohibited_until}}.

{%- endif -%}