use common layout for devise mailer

This commit is contained in:
Alexis Reigel 2017-04-05 16:38:10 +02:00
parent 2fbe116c22
commit b0e0bfc8e7
3 changed files with 23 additions and 23 deletions

View File

@ -2,7 +2,9 @@ class DeviseMailer < Devise::Mailer
default from: "#{Gitlab.config.gitlab.email_display_name} <#{Gitlab.config.gitlab.email_from}>" default from: "#{Gitlab.config.gitlab.email_display_name} <#{Gitlab.config.gitlab.email_from}>"
default reply_to: Gitlab.config.gitlab.email_reply_to default reply_to: Gitlab.config.gitlab.email_reply_to
layout 'devise_mailer' layout 'mailer'
helper EmailsHelper
protected protected

View File

@ -1,10 +1,9 @@
.center = render layout: 'layouts/mailer/default_content' do
#content Hello, #{@resource.name}!
%h2 Hello, #{@resource.name}! %p
%p The password for your GitLab account on
The password for your GitLab account on #{link_to(Gitlab.config.gitlab.url, Gitlab.config.gitlab.url)}
#{link_to(Gitlab.config.gitlab.url, Gitlab.config.gitlab.url)} has successfully been changed.
has successfully been changed. %p
%p If you did not initiate this change, please contact your administrator
If you did not initiate this change, please contact your administrator immediately.
immediately.

View File

@ -1,12 +1,11 @@
.center = render layout: 'layouts/mailer/default_content' do
#content Hello, #{@resource.name}!
%h2 Hello, #{@resource.name}! %p
%p Someone, hopefully you, has requested to reset the password for your
Someone, hopefully you, has requested to reset the password for your GitLab account on #{link_to(Gitlab.config.gitlab.url, Gitlab.config.gitlab.url)}.
GitLab account on #{link_to(Gitlab.config.gitlab.url, Gitlab.config.gitlab.url)}. %p
%p If you did not perform this request, you can safely ignore this email.
If you did not perform this request, you can safely ignore this email. %p
%p Otherwise, click the link below to complete the process.
Otherwise, click the link below to complete the process. #cta
#cta = link_to('Reset password', edit_password_url(@resource, reset_password_token: @token))
= link_to('Reset password', edit_password_url(@resource, reset_password_token: @token))