class Ditty::Emails::ForgotPassword

Public Class Methods

new(options = {}) click to toggle source
Calls superclass method Ditty::Emails::Base::new
# File lib/ditty/emails/forgot_password.rb, line 9
def initialize(options = {})
  options = { view: :forgot_password, layout: :action, subject: 'Request to reset password' }.merge(options)
  super(options)
end