new_context_group_membership.email.mustache 914 B

1234567891011121314151617181920
  1. <% define_content :link do %>
  2. <%= polymorphic_url([asset.group.context, asset.group]) %>
  3. <% end %>
  4. <% define_content :subject do %>
  5. <%= t :subject, "New Group Membership for %{course_or_account}", :course_or_account => asset.group.context.name %>
  6. <% end %>
  7. <%= t :title, "New Group Membership: %{group_name}", :group_name => asset.group.name %>
  8. <%=
  9. case asset.group.context_type
  10. when 'Account'
  11. t :body_account, "You've been added to a new group for the account %{account}. The name of the group is %{group_name}.", :account => asset.group.context.name, :group_name => asset.group.name
  12. else
  13. t :body_course, "You've been added to a new group for the course %{course}. The name of the group is %{group_name}.", :course => asset.group.context.name, :group_name => asset.group.name
  14. end
  15. %>
  16. <%= t("You can check out the group by clicking this link: %{link}", link: content(:link)) %>