aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG
diff options
context:
space:
mode:
authorJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-25 23:46:09 +1100
committerJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-25 23:46:23 +1100
commit4a6eba3232fec13892f36fc4730bb2deef342fc3 (patch)
treed762e14fe77f2bd953c0787930e849be7374d4b3 /actionmailer/CHANGELOG
parent9cb3ca1d29eb770c1a7adac3798666847fceee2b (diff)
downloadrails-4a6eba3232fec13892f36fc4730bb2deef342fc3.tar.gz
rails-4a6eba3232fec13892f36fc4730bb2deef342fc3.tar.bz2
rails-4a6eba3232fec13892f36fc4730bb2deef342fc3.zip
Added initial documentation for the new API
Diffstat (limited to 'actionmailer/CHANGELOG')
-rw-r--r--actionmailer/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 785bf98c55..0018a2ed5d 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,5 +1,7 @@
*Rails 3.0 (pending)*
+* Whole new API added with tests. See base.rb for full details. Old API is deprecated.
+
* 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'}