web_conference_invitation.email.html.mustache 532 B

12345678910111213141516
  1. <% define_content :link do %>
  2. <%= polymorphic_url([asset.context, :conferences]) %>
  3. <% end %>
  4. <% define_content :subject do %>
  5. <%= t :subject, "Web Conference Invitation: %{name}", :name => asset.context.name %>
  6. <% end %>
  7. <% define_content :footer_link do %>
  8. <a href="<%= content(:link) %>">
  9. <%= t :details_link, "Click here to see the details"%>
  10. </a>
  11. <% end %>
  12. <p><%= t :body, "You've been invited to participate in a web conference, %{title} for %{name}.", :title => asset.title, :name => asset.context.name %></p>