mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
12 lines
261 B
Ruby
12 lines
261 B
Ruby
class Notifier < ::ActionMailer::Base
|
|
|
|
def confirmation_instructions(record)
|
|
# TODO: configure email
|
|
end
|
|
|
|
def reset_password_instructions(record)
|
|
# TODO
|
|
end
|
|
end
|
|
|
|
#Devise::Notifier.template_root = File.join(File.dirname(__FILE__), '..', 'views')
|