app/mailers/spina/user_mailer.rb in spina-2.12.0 vs app/mailers/spina/user_mailer.rb in spina-2.13.0

- old
+ new

@@ -1,13 +1,11 @@ module Spina class UserMailer < ApplicationMailer - def forgot_password(user, user_agent_string = nil) @user = user @browser = Browser.new(user_agent_string) - - mail to: @user.email, - subject: t('spina.user_mailer.forgot_password.subject') - end + mail to: @user.email, + subject: t("spina.user_mailer.forgot_password.subject") + end end -end \ No newline at end of file +end