trym / mail-bouncer
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
MIT-LICENSE | ||
| |
README.rdoc | ||
| |
Rakefile | ||
| |
init.rb | ||
| |
install.rb | ||
| |
lib/ | ||
| |
mail_bouncer.gemspec | ||
| |
tasks/ | ||
| |
test/ | ||
| |
uninstall.rb |
README.rdoc
MailBouncer
Rails gem for catching outgoing emails and bouncing them to specified recipient(s) while keeping headers intact.
Install
gem install trym-mail_bouncer --source http://gems.github.com
or
config.gem "trym-mail_bouncer", :lib => "mail_bouncer", :source => "http://gems.github.com"
Usage
Add this to config/initializers/mail_bouncer.rb:
MailBouncer.configure do |config|
config.enabled = ENV["RAILS_ENV"] == 'development'
config.recipients = 'your@email'
end

