Skip to content

Instantly share code, notes, and snippets.

@adamwiggins
Created August 15, 2008 04:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamwiggins/5536 to your computer and use it in GitHub Desktop.
Save adamwiggins/5536 to your computer and use it in GitHub Desktop.
# run this in the console
Notifier.deliver_hello('your_email@example.com')
# app/views/notifier/hello.html.erb
Hello from ActionMailer!
# app/models/notifier.rb
class Notifier < ActionMailer::Base
def hello(email)
recipients email
subject "Hello"
body
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment