blob: e3ca39b3a5d244856e3704317f6fa480fa783e19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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, _opts = {})
@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, _opts = {})
@resource = user
@token = token
I18n.with_locale(@resource.locale || I18n.default_locale) do
mail to: @resource.email
end
end
def password_change(user, _opts = {})
@resource = user
I18n.with_locale(@resource.locale || I18n.default_locale) do
mail to: @resource.email
end
end
end
|