Skip to content

Instantly share code, notes, and snippets.

@perryqh
Created June 23, 2010 13:55
Show Gist options
  • Save perryqh/449943 to your computer and use it in GitHub Desktop.
Save perryqh/449943 to your computer and use it in GitHub Desktop.
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