14 lines
605 B
Text
14 lines
605 B
Text
<% content_for :message do %>
|
|
<%= t("mailer.general.greeting.formal.addressed_html", name: @user.login) %>
|
|
|
|
<%= t(".made_request", app_name: ArchiveConfig.APP_SHORT_NAME) %>
|
|
|
|
<%= t(".confirm_change.text", unconfirmed_email: @new_email, count: User.confirm_within.in_days.to_i, contact_support_url: new_feedback_report_url) %>
|
|
|
|
<%= t(".wrong_email.text", email_change_form_url: change_email_user_url(@user)) %>
|
|
|
|
<%= t(".not_made_request.text",
|
|
reset_password_url: new_user_password_url,
|
|
contact_policy_abuse_url: new_abuse_report_url,
|
|
app_name: ArchiveConfig.APP_SHORT_NAME) %>
|
|
<% end %>
|