|
{% if
invite_suggestion.emails.size == 1 %}
{{ invite_suggestion.full_name }} has requested that you invite
{{ invite_suggestion.emails[0] }} to join the {{ invite_suggestion.account.name }} team on Netlify.
{% else
%}
{{
invite_suggestion.full_name }} has requested that you invite:
{% for email in invite_suggestion.emails %} - {{
email }}
{% endfor %}
{% endif %}
|
|
|