33 lines
777 B
Text
33 lines
777 B
Text
<% content_for :message do %>
|
|
<% if @username.present? %>
|
|
<%= t("mailer.general.greeting.informal.addressed_html", name: @username) %>
|
|
<% else %>
|
|
<%= t("mailer.general.greeting.informal.unaddressed") %>
|
|
<% end %>
|
|
|
|
<%= t(".report_received") %>
|
|
|
|
<%= t(".resubmission") %>
|
|
|
|
<%= t(".copy.intro") %>
|
|
|
|
<%= text_divider %>
|
|
|
|
<%= metadata_label(t(".copy.url")) %>
|
|
<%= to_plain_text(@url) %>
|
|
|
|
<%= metadata_label(t(".copy.summary")) %>
|
|
<%= to_plain_text(raw @summary) %>
|
|
|
|
<%= metadata_label(t(".copy.comment")) %>
|
|
<%= to_plain_text(raw(strip_images(@comment, keep_src: true))) %>
|
|
|
|
<%= text_divider %>
|
|
|
|
<%= t(".thank_you") %>
|
|
|
|
<%= t("mailer.general.closing.formal") %>
|
|
<%= t("mailer.general.signature.abuse_team") %>
|
|
<% end %>
|
|
|
|
<% content_for :sent_at do %><%= l(Time.current) %><% end %>
|