parent
2c766bd4b4
commit
116ab27e08
@ -1,6 +1,6 @@ |
|||||||
# frozen_string_literal: true |
# frozen_string_literal: true |
||||||
|
|
||||||
class ApplicationMailer < ActionMailer::Base |
class ApplicationMailer < ActionMailer::Base |
||||||
default from: (ENV['SMTP_FROM_ADDRESS'] || 'notifications@localhost') |
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' } |
||||||
layout 'mailer' |
layout 'mailer' |
||||||
end |
end |
||||||
|
@ -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 |
Loading…
Reference in new issue