Advertisement
rijarob

Email receipt variable text based on category

Jun 13th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. {% set purchase_type = "" %}
  2. {% for item in items %}
  3. {% if item.category == "Event" %}
  4. {% set purchase_type = "event" %}
  5. {% elseif item.category == "Video" %}
  6. {% set purchase_type = "video" %}
  7. {% endif %}
  8. {% endfor %}
  9. {% if purchase_type == "event" %}
  10. Static paragraph with information about the event.
  11. {% elseif purchase_type == "video" %}
  12. To watch your video on NextGenCrowdfunding.com, please click here: http://www.nextgencrowdfunding.com
  13. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement