fxn (owner)

Revisions

gist: 166628 Download_button fork
public
Public Clone URL: git://gist.github.com/166628.git
Embed All Files: show embed
action_mailer_dev_null.rb #
1
2
3
4
5
6
7
8
9
10
11
12
13
# Action Mailer logs mails, for me that's enough for development most
# of the times.
#
# Throw this little snippet somewhere in your config/initializers, and
# enable it in config/environments/development.rb this way:
#
# config.action_mailer.delivery_method = :dev_null
#
ActionMailer::Base.class_eval do
  def perform_delivery_dev_null(mail)
  end
end