15 lines
565 B
Text
15 lines
565 B
Text
<% content_for :message do %>
|
|
<%= t("mailer.general.greeting.formal.addressed_html", name: @resource.login) %>
|
|
|
|
<%= t(".changed", date: l(Time.current), app_name: ArchiveConfig.APP_SHORT_NAME) %>
|
|
|
|
<%= t(".made_change.text",
|
|
login_url: new_user_session_url,
|
|
reset_password_url: new_user_password_url,
|
|
contact_support_url: new_feedback_report_url) %>
|
|
|
|
<%= t(".did_not_make_change.text",
|
|
reset_password_url: new_user_password_url,
|
|
contact_policy_abuse_url: new_abuse_report_url,
|
|
app_name: ArchiveConfig.APP_SHORT_NAME) %>
|
|
<% end %>
|