added_to_conversation.email.mustache 589 B

12345678910111213141516
  1. <% define_content :link do %>
  2. <%= conversation_url(asset.conversation_id) %>
  3. <% end %>
  4. <% define_content :user_name do %>
  5. <%= asset.author_short_name_with_shared_contexts(user) rescue t(:unknown_user, "Unknown User") %>
  6. <% end %>
  7. <% define_content :subject do %>
  8. <%= t :subject, "%{user_name} just added you to a conversation in Canvas.", :user_name => content(:user_name) %>
  9. <% end %>
  10. <%=
  11. t("%{user_name} just added you to a conversation in Canvas. To view the conversation, click this link: %{link}.", {
  12. :user_name => content(:user_name),
  13. :link => content(:link)
  14. })
  15. %>