Created
June 23, 2010 13:55
-
-
Save perryqh/449943 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 Emailer < ActionMailer::Base | |
helper :application | |
layout 'email' | |
extend DelayedJobExtensions | |
delay_email_methods :invite_customer | |
def invite_customer(cutomer_email) | |
recipients customer_email | |
from admin_email | |
subject "Welcome to bestsite.com!" | |
body(:foo => "bar") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment