Skip to content

Instantly share code, notes, and snippets.

@jqr
Created April 7, 2009 00:23
Show Gist options
  • Save jqr/91026 to your computer and use it in GitHub Desktop.
Save jqr/91026 to your computer and use it in GitHub Desktop.
class UserNotifier < ActionMailer::Base
def self.without_deliveries
initial = self.perform_deliveries
self.perform_deliveries = false
yield
self.perform_deliveries = initial
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment