1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-29 11:49:37 +00:00
redmine/app/views/mailer/account_information.html.erb
Jean-Philippe Lang 9441ab0ca8 Send email even if password is not changed (#7577).
git-svn-id: http://svn.redmine.org/redmine/trunk@16453 e93f8b46-1217-0410-a6f0-8f06a7374b81
2017-04-03 10:48:59 +00:00

14 lines
412 B
Plaintext

<% if @user.auth_source %>
<p><%= l(:mail_body_account_information_external, h(@user.auth_source.name)) %></p>
<% else %>
<p><%= l(:mail_body_account_information) %>:</p>
<ul>
<li><%= l(:field_login) %>: <%= @user.login %></li>
<% if @password %>
<li><%= l(:field_password) %>: <%= @password %></li>
<% end %>
</ul>
<% end %>
<p><%= l(:label_login) %>: <%= link_to @login_url, @login_url %></p>