aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-04-06 13:01:12 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-04-06 13:01:12 +0530
commitc327ef4d65650743fbf49c8ba29016ecef70dd39 (patch)
tree8cf71d7adb7fe60ed537b3783bbd8d5ca19fab67 /actionmailer
parent4ac719686c0075b6ad6896becfe0f058efdb97ff (diff)
parent92e6255b58ce445d23580b669dac67d80e64d411 (diff)
downloadrails-c327ef4d65650743fbf49c8ba29016ecef70dd39.tar.gz
rails-c327ef4d65650743fbf49c8ba29016ecef70dd39.tar.bz2
rails-c327ef4d65650743fbf49c8ba29016ecef70dd39.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/README.rdoc13
1 files changed, 13 insertions, 0 deletions
diff --git a/actionmailer/README.rdoc b/actionmailer/README.rdoc
index 14d20bb08d..9b206fbcc7 100644
--- a/actionmailer/README.rdoc
+++ b/actionmailer/README.rdoc
@@ -72,6 +72,19 @@ Or you can just chain the methods together like:
Notifier.welcome.deliver # Creates the email and sends it immediately
+== Setting defaults
+
+It is possible to set default values that will be used in every method in your Action Mailer class. To implement this functionality, you just call the public class method <tt>default</tt> which you get for free from ActionMailer::Base. This method accepts a Hash as the parameter. You can use any of the headers e-mail messages has, like <tt>:from</tt> as the key. You can also pass in a string as the key, like "Content-Type", but Action Mailer does this out of the box for you, so you wont need to worry about that. Finally it is also possible to pass in a Proc that will get evaluated when it is needed.
+
+Note that every value you set with this method will get over written if you use the same key in your mailer method.
+
+Example:
+
+ class Authenticationmailer < ActionMailer::Base
+ default :from => "awesome@application.com", :subject => Proc.new { "E-mail was generated at #{Time.now}" }
+ .....
+ end
+
== Receiving emails
To receive emails, you need to implement a public instance method called <tt>receive</tt> that takes an