app/mailers/clearance_mailer.rb in clearance-1.6.0 vs app/mailers/clearance_mailer.rb in clearance-1.6.1
- old
+ new
@@ -1,9 +1,14 @@
class ClearanceMailer < ActionMailer::Base
def change_password(user)
@user = user
- mail from: Clearance.configuration.mailer_sender, to: @user.email,
- subject: I18n.t(:change_password,
- scope: [:clearance, :models, :clearance_mailer],
- default: 'Change your password')
+ mail(
+ from: Clearance.configuration.mailer_sender,
+ to: @user.email,
+ subject: I18n.t(
+ :change_password,
+ scope: [:clearance, :models, :clearance_mailer],
+ default: "Change your password"
+ )
+ )
end
end