web_conference_invitation.email.mustache 466 B

123456789101112
  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. <%= t :body, "You've been invited to participate in a web conference, %{title} for %{name}.", :title => asset.title, :name => asset.context.name %>
  8. <%= t :details_link, "You can see the details here: %{link}", :link => content(:link) %>