16 lines
532 B
Plaintext
16 lines
532 B
Plaintext
<% define_content :link do %>
|
|
<%= polymorphic_url([asset.context, :conferences]) %>
|
|
<% end %>
|
|
|
|
<% define_content :subject do %>
|
|
<%= t :subject, "Web Conference Invitation: %{name}", :name => asset.context.name %>
|
|
<% end %>
|
|
|
|
<% define_content :footer_link do %>
|
|
<a href="<%= content(:link) %>">
|
|
<%= t :details_link, "Click here to see the details"%>
|
|
</a>
|
|
<% end %>
|
|
|
|
<p><%= t :body, "You've been invited to participate in a web conference, %{title} for %{name}.", :title => asset.title, :name => asset.context.name %></p>
|