From 5acf76d17371250857cd2396c46252dd0b550cf4 Mon Sep 17 00:00:00 2001 From: Paco Guzman Date: Tue, 7 Jun 2011 23:27:09 +0200 Subject: Add action_mailer observer and interceptors configuration options --- actionmailer/lib/action_mailer/base.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'actionmailer/lib/action_mailer/base.rb') diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 3afdbea42a..ccc25c775b 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -213,14 +213,14 @@ module ActionMailer #:nodoc: # = Observing and Intercepting Mails # # Action Mailer provides hooks into the Mail observer and interceptor methods. These allow you to - # register objects that are called during the mail delivery life cycle. + # register classes that are called during the mail delivery life cycle. # - # An observer object must implement the :delivered_email(message) method which will be + # An observer class must implement the :delivered_email(message) method which will be # called once for every email sent after the email has been sent. # - # An interceptor object must implement the :delivering_email(message) method which will be + # An interceptor class must implement the :delivering_email(message) method which will be # called before the email is sent, allowing you to make modifications to the email before it hits - # the delivery agents. Your object should make any needed modifications directly to the passed + # the delivery agents. Your class should make any needed modifications directly to the passed # in Mail::Message instance. # # = Default Hash -- cgit v1.2.3