Fix confirmation email being sent to old address when changing it
This commit is contained in:
parent
de9b6e3a6a
commit
b191afcb5b
2 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,7 @@ class UserMailer < Devise::Mailer
|
|||
@token = token
|
||||
|
||||
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
||||
mail to: @resource.email
|
||||
mail to: @resource.unconfirmed_email.blank? ? @resource.email : @resource.unconfirmed_email
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue