Created
December 12, 2011 16:13
-
-
Save SpencerCooley/1468054 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Notifier < ActionMailer::Base | |
default :from => "Sam Ruby <[email protected]>" | |
# Subject can be set in your I18n file at config/locales/en.yml | |
# with the following lookup: | |
# | |
# en.notifier.order_recieved.subject | |
# | |
def order_recieved | |
@greeting = "Hi" | |
mail :to => "[email protected]" | |
end | |
# Subject can be set in your I18n file at config/locales/en.yml | |
# with the following lookup: | |
# | |
# en.notifier.order_shipped.subject | |
# | |
def order_shipped | |
@greeting = "Hi" | |
mail :to => "[email protected]" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment