aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-04-01 14:04:55 -0700
committerwycats <wycats@gmail.com>2010-04-01 14:04:55 -0700
commitc1883e75b38be79cc547890b2c83619351da1c95 (patch)
tree24d68016fc2c240f60970be8b2a414fc114a2a83 /actionmailer
parentd2a48852a197190ecead6650aa62c7df4c3136ee (diff)
downloadrails-c1883e75b38be79cc547890b2c83619351da1c95.tar.gz
rails-c1883e75b38be79cc547890b2c83619351da1c95.tar.bz2
rails-c1883e75b38be79cc547890b2c83619351da1c95.zip
Updated changelogs to differentiate beta1 and beta2
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/CHANGELOG4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index c78cfd89ac..bb5c7311f3 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,4 +1,4 @@
-*Rails 3.0 (pending)*
+*Rails 3.0.0 [beta 2] (pending)*
* Added interceptors and observers from Mail [ML]
@@ -7,6 +7,8 @@
* Whole new API added with tests. See base.rb for full details. Old API is deprecated.
+*Rails 3.0.0 [beta 1] (February 4, 2010)*
+
* The Mail::Message class has helped methods for all the field types that return 'common' defaults for the common use case, so to get the subject, mail.subject will give you a string, mail.date will give you a DateTime object, mail.from will give you an array of address specs (mikel@test.lindsaar.net) etc. If you want to access the field object itself, call mail[:field_name] which will return the field object you want, which you can then chain, like mail[:from].formatted
* Mail#content_type now returns the content_type field as a string. If you want the mime type of a mail, then you call Mail#mime_type (eg, text/plain), if you want the parameters of the content type field, you call Mail#content_type_parameters which gives you a hash, eg {'format' => 'flowed', 'charset' => 'utf-8'}