Skip to content

Instantly share code, notes, and snippets.

@jbdietrich
Created January 16, 2014 15:18
Show Gist options
  • Save jbdietrich/8456622 to your computer and use it in GitHub Desktop.
Save jbdietrich/8456622 to your computer and use it in GitHub Desktop.
{% if ticket.cc_names != empty %}
{% capture emails %}
{% for cc in ticket.ccs %}
{% unless forloop.last %}
{{ cc.email | append: ', ' }}
{% else %}
{{ cc.email }}
{% endunless %}
{% endfor %}
{% endcapture %}
{{ emails | strip_newlines }}
{% else %}
Nobody
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment