rubric_association_created.email.html.mustache 601 B

123456789101112131415161718
  1. <% define_content :link do %>
  2. <%= polymorphic_url([asset.context, :rubric], id: asset.rubric_id) %>
  3. <% end %>
  4. <% define_content :subject do %>
  5. <%= t :subject, "New Assessment: %{title}, %{context}", :title => asset.title, :context => asset.context.name %>
  6. <% end %>
  7. <% define_content :footer_link do %>
  8. <a href="<%= content(:link) %>">
  9. <%= t :link_message, "Click here to review the assessment and submit your entry" %>
  10. </a>
  11. <% end %>
  12. <p><%= t :body, "A new assessment has been created for %{context}:", :context => asset.context.name %></p>
  13. <p><strong><%= asset.title %></strong></p>