aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/base.rb
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-12-08 10:20:59 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-12-08 10:21:20 -0500
commit4ec7493e3cb9366df604f9f3082b4cd6f6dfd4fd (patch)
treea9ebf2deafa6a04bde975886d3fc98b630683ece /actionmailer/lib/action_mailer/base.rb
parentbef330803ae4a30bfeaf6dd9c86077cfb5e250e1 (diff)
downloadrails-4ec7493e3cb9366df604f9f3082b4cd6f6dfd4fd.tar.gz
rails-4ec7493e3cb9366df604f9f3082b4cd6f6dfd4fd.tar.bz2
rails-4ec7493e3cb9366df604f9f3082b4cd6f6dfd4fd.zip
use _action callbacks in actionmailer
Diffstat (limited to 'actionmailer/lib/action_mailer/base.rb')
-rw-r--r--actionmailer/lib/action_mailer/base.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index 31005c9d9b..dcf13e927c 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -284,12 +284,12 @@ module ActionMailer
#
# = Callbacks
#
- # You can specify callbacks using before_filter and after_filter for configuring your messages.
+ # You can specify callbacks using before_action and after_action for configuring your messages.
# This may be useful, for example, when you want to add default inline attachments for all
# messages sent out by a certain mailer class:
#
# class Notifier < ActionMailer::Base
- # before_filter :add_inline_attachment!
+ # before_action :add_inline_attachment!
#
# def welcome
# mail
@@ -306,8 +306,8 @@ module ActionMailer
# can define and configure callbacks in the same manner that you would use callbacks in
# classes that inherit from ActionController::Base.
#
- # Note that unless you have a specific reason to do so, you should prefer using before_filter
- # rather than after_filter in your ActionMailer classes so that headers are parsed properly.
+ # Note that unless you have a specific reason to do so, you should prefer using before_action
+ # rather than after_action in your ActionMailer classes so that headers are parsed properly.
#
# = Configuration options
#