Skip to content

Instantly share code, notes, and snippets.

@croaky
Created March 15, 2012 06:32
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save croaky/2042496 to your computer and use it in GitHub Desktop.
Save croaky/2042496 to your computer and use it in GitHub Desktop.
Set staging environment email to go to a single email address you control in order to not accidentally send production email addresses staging data.
module SingleRecipientSmtp
def self.included(clazz)
clazz.class_eval do
cattr_accessor :single_recipient_smtp_settings
end
end
def perform_delivery_single_recipient_smtp(mail)
mail.to = single_recipient_smtp_settings[:to]
mail.cc = nil
mail.bcc = nil
perform_delivery_smtp mail
end
end
config.action_mailer.delivery_method = :single_recipient_smtp
ActionMailer::Base.send :include, SingleRecipientSmtp
ActionMailer::Base.single_recipient_smtp_settings = {
:to => 'staging@example.com'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment