Skip to content

Instantly share code, notes, and snippets.

@notbrain
Created February 12, 2010 17:38
Show Gist options
  • Save notbrain/302783 to your computer and use it in GitHub Desktop.
Save notbrain/302783 to your computer and use it in GitHub Desktop.
# This works
def welcome_email(email)
recipients email.email
subject "Welcome to PeerPong!"
sent_on Time.now
body :email => email.email
from "[email protected]"
reply_to "[email protected]"
end
# This doesn't work
def welcome_email(email)
recipients email.email
subject "Welcome to PeerPong!"
sent_on Time.now
body :email => email.email
from "PeerPong <[email protected]>" # <-- only thing different
reply_to "[email protected]"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment