aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-06-16 06:46:22 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-06-16 06:46:22 +0000
commitbdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1 (patch)
treef76aaed13d0a4343384497e4f8eb05f68de6a15a /actionmailer
parent253a2bbefb707fa5f16c61c8db978790cac777d1 (diff)
downloadrails-bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1.tar.gz
rails-bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1.tar.bz2
rails-bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1.zip
Revealed the man behind the mask!
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1443 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/CHANGELOG2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 59a4e40ed2..c3f4dae792 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -120,7 +120,7 @@
* Consolidated the server configuration options into Base#server_settings= and expanded that with controls for authentication and more [Marten]
NOTE: This is an API change that could potentially break your application if you used the old application form. Please do change!
-* Added Base#deliveries as an accessor for an array of emails sent out through that ActionMailer class when using the :test delivery option. [bitsweat]
+* Added Base#deliveries as an accessor for an array of emails sent out through that ActionMailer class when using the :test delivery option. [Jeremy Kemper]
* Added Base#perform_deliveries= which can be set to false to turn off the actual delivery of the email through smtp or sendmail.
This is especially useful for functional testing that shouldn't send off real emails, but still trigger delivery_* methods.