Skip to content

Instantly share code, notes, and snippets.

@mhanberg
Last active May 22, 2024 10:37
Show Gist options
  • Save mhanberg/7bca95849839cf03fa2404333b5b62d0 to your computer and use it in GitHub Desktop.
Save mhanberg/7bca95849839cf03fa2404333b5b62d0 to your computer and use it in GitHub Desktop.
module Interceptors
class StagingServerEmailInterceptor
def self.delivering_email(email)
email.to = "[email protected]"
email.subject = "(TEST) " + email.subject
end
end
end
if Rails.env.staging?
ActionMailer::Base.register_interceptors(Interceptors::StagingServerEmailInterceptor)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment