Skip to content

Instantly share code, notes, and snippets.

@carimura
Created June 11, 2012 19:25
Show Gist options
  • Save carimura/2912125 to your computer and use it in GitHub Desktop.
Save carimura/2912125 to your computer and use it in GitHub Desktop.
app/models/mailer.rb
class Mailer < ActionMailer::Base
layout 'email'
default :from => "[email protected]"
def hello_world(email)
mail(:to => email,
:subject => "Hello World from IronWorker!")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment