1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

s/it's/its/

[ci skip]
This commit is contained in:
Akira Matsuda 2013-01-18 17:17:59 +09:00
parent 8b0e52556e
commit 9da9763e0a

View file

@ -588,7 +588,7 @@ class SandboxEmailInterceptor
end
```
Before the interceptor can do it's job you need to register it with the Action Mailer framework. You can do this in an initializer file `config/initializers/sandbox_email_interceptor.rb`
Before the interceptor can do its job you need to register it with the Action Mailer framework. You can do this in an initializer file `config/initializers/sandbox_email_interceptor.rb`
```ruby
ActionMailer::Base.register_interceptor(SandboxEmailInterceptor) if Rails.env.staging?