canvas-lms/app/messages/confirm_email_communication...

22 lines
606 B
Plaintext

<% define_content :link do %>
<%= registration_confirmation_url(asset.confirmation_code) %>
<% end %>
<% define_content :subject do %>
<%= t :subject, "Confirm Email: Canvas" %>
<% end %>
<% define_content :footer_link do %>
<a href="<%= content(:link) %>">
<%= t :details, "Click here to confirm this registration" %>
</a>
<% end %>
<p>
<%= t :body,
"The email address, %{email} is being registered at %{website} for the user, %{user}.",
:email => asset.path,
:website => HostUrl.context_host(asset_context) || HostUrl.default_host,
:user => asset.user.name %>
</p>