Created
October 3, 2014 19:09
-
-
Save cktricky/01835c9a1ce15c936235 to your computer and use it in GitHub Desktop.
MyMailer (override Devise's Mailer)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyMailer < Devise::Mailer | |
def confirmation_instructions(record, token, opts={}) | |
# code to be added here later | |
end | |
def reset_password_instructions(record, token, opts={}) | |
# code to be added here later | |
end | |
def unlock_instructions(record, token, opts={}) | |
# code to be added here later | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment