about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-16 18:25:21 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-16 18:25:21 +0100
commit116ab27e081253a572b1ce7a5188b472092bbec4 (patch)
tree649bda20e251b2fe7c466946b84d65344ea7a0d5
parent2c766bd4b4c6dcf8e7c9a6dd9421edca0de57aba (diff)
i18n for devise mailer too
-rw-r--r--app/mailers/application_mailer.rb2
-rw-r--r--app/mailers/user_mailer.rb32
-rw-r--r--app/views/user_mailer/confirmation_instructions.en.html.erb (renamed from app/views/auth/mailer/confirmation_instructions.en.html.erb)0
-rw-r--r--app/views/user_mailer/confirmation_instructions.en.text.erb (renamed from app/views/auth/mailer/confirmation_instructions.en.text.erb)0
-rw-r--r--app/views/user_mailer/password_change.en.html.erb (renamed from app/views/auth/mailer/password_change.en.html.erb)0
-rw-r--r--app/views/user_mailer/password_change.en.text.erb (renamed from app/views/auth/mailer/password_change.en.text.erb)0
-rw-r--r--app/views/user_mailer/reset_password_instructions.en.html.erb (renamed from app/views/auth/mailer/reset_password_instructions.en.html.erb)0
-rw-r--r--app/views/user_mailer/reset_password_instructions.en.text.erb (renamed from app/views/auth/mailer/reset_password_instructions.en.text.erb)0
-rw-r--r--config/initializers/devise.rb6
9 files changed, 36 insertions, 4 deletions
diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb
index 2f7dd6ee5..0d9f10a08 100644
--- a/app/mailers/application_mailer.rb
+++ b/app/mailers/application_mailer.rb
@@ -1,6 +1,6 @@
 # frozen_string_literal: true
 
 class ApplicationMailer < ActionMailer::Base
-  default from: (ENV['SMTP_FROM_ADDRESS'] || 'notifications@localhost')
+  default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
   layout 'mailer'
 end
diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb
new file mode 100644
index 000000000..5c086768d
--- /dev/null
+++ b/app/mailers/user_mailer.rb
@@ -0,0 +1,32 @@
+# frozen_string_literal: true
+
+class UserMailer < Devise::Mailer
+  default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
+  layout 'mailer'
+
+  def confirmation_instructions(user, token)
+    @resource = user
+    @token    = token
+
+    I18n.with_locale(@resource.locale || I18n.default_locale) do
+      mail to: @resource.email
+    end
+  end
+
+  def reset_password_instructions(user, token)
+    @resource = user
+    @token    = token
+
+    I18n.with_locale(@resource.locale || I18n.default_locale) do
+      mail to: @resource.email
+    end
+  end
+
+  def password_change(user)
+    @resource = user
+
+    I18n.with_locale(@resource.locale || I18n.default_locale) do
+      mail to: @resource.email
+    end
+  end
+end
diff --git a/app/views/auth/mailer/confirmation_instructions.en.html.erb b/app/views/user_mailer/confirmation_instructions.en.html.erb
index 69e9ff80f..69e9ff80f 100644
--- a/app/views/auth/mailer/confirmation_instructions.en.html.erb
+++ b/app/views/user_mailer/confirmation_instructions.en.html.erb
diff --git a/app/views/auth/mailer/confirmation_instructions.en.text.erb b/app/views/user_mailer/confirmation_instructions.en.text.erb
index bb21cf8e2..bb21cf8e2 100644
--- a/app/views/auth/mailer/confirmation_instructions.en.text.erb
+++ b/app/views/user_mailer/confirmation_instructions.en.text.erb
diff --git a/app/views/auth/mailer/password_change.en.html.erb b/app/views/user_mailer/password_change.en.html.erb
index a1bc77463..a1bc77463 100644
--- a/app/views/auth/mailer/password_change.en.html.erb
+++ b/app/views/user_mailer/password_change.en.html.erb
diff --git a/app/views/auth/mailer/password_change.en.text.erb b/app/views/user_mailer/password_change.en.text.erb
index 27581e604..27581e604 100644
--- a/app/views/auth/mailer/password_change.en.text.erb
+++ b/app/views/user_mailer/password_change.en.text.erb
diff --git a/app/views/auth/mailer/reset_password_instructions.en.html.erb b/app/views/user_mailer/reset_password_instructions.en.html.erb
index 643b43319..643b43319 100644
--- a/app/views/auth/mailer/reset_password_instructions.en.html.erb
+++ b/app/views/user_mailer/reset_password_instructions.en.html.erb
diff --git a/app/views/auth/mailer/reset_password_instructions.en.text.erb b/app/views/user_mailer/reset_password_instructions.en.text.erb
index fe73b0165..fe73b0165 100644
--- a/app/views/auth/mailer/reset_password_instructions.en.text.erb
+++ b/app/views/user_mailer/reset_password_instructions.en.text.erb
diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb
index 4ddef45ef..85ba1082b 100644
--- a/config/initializers/devise.rb
+++ b/config/initializers/devise.rb
@@ -12,10 +12,10 @@ Devise.setup do |config|
   # Configure the e-mail address which will be shown in Devise::Mailer,
   # note that it will be overwritten if you use your own mailer class
   # with default "from" parameter.
-  config.mailer_sender = ENV['SMTP_FROM_ADDRESS'] || 'notifications@localhost'
+  # config.mailer_sender = ENV['SMTP_FROM_ADDRESS'] || 'notifications@localhost'
 
   # Configure the class responsible to send e-mails.
-  # config.mailer = 'Devise::Mailer'
+  config.mailer = 'UserMailer'
 
   # ==> ORM configuration
   # Load and configure the ORM. Supports :active_record (default) and
@@ -102,7 +102,7 @@ Devise.setup do |config|
   # config.pepper = '104d16705f794923e77c5e5167b52452d00646dc952a2d30b541c24086e647012c7b9625f253c51912e455981e503446772973d5f1638631196c819d7137fad4'
 
   # Send a notification email when the user's password is changed
-  # config.send_password_change_notification = false
+  config.send_password_change_notification = true
 
   # ==> Configuration for :confirmable
   # A period that the user is allowed to access the website even without