diff options
author | Ben Oakes <hello@benjaminoakes.com> | 2012-06-20 12:09:53 -0300 |
---|---|---|
committer | Ben Oakes <hello@benjaminoakes.com> | 2012-06-20 12:09:53 -0300 |
commit | d0f088e7f5668cafa5c9d4090fa1f209ce0e554a (patch) | |
tree | 3f3f80bc967e9c59a5dd6db994ad03fc2d4ab2de /actionmailer/lib | |
parent | 065e02d04b8c249a02b63a4de8e798c950c40a94 (diff) | |
download | rails-d0f088e7f5668cafa5c9d4090fa1f209ce0e554a.tar.gz rails-d0f088e7f5668cafa5c9d4090fa1f209ce0e554a.tar.bz2 rails-d0f088e7f5668cafa5c9d4090fa1f209ce0e554a.zip |
Fix delivery_method usage
Diffstat (limited to 'actionmailer/lib')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 4f0cff0612..5431e6d8a7 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -338,7 +338,7 @@ module ActionMailer #:nodoc: # # * <tt>delivery_method</tt> - Defines a delivery method. Possible values are <tt>:smtp</tt> (default), # <tt>:sendmail</tt>, <tt>:test</tt>, and <tt>:file</tt>. Or you may provide a custom delivery method - # object eg. MyOwnDeliveryMethodClass.new. See the Mail gem documentation on the interface you need to + # object e.g. MyOwnDeliveryMethodClass (not MyOwnDeliveryMethodClass.new). See the Mail gem documentation on the interface you need to # implement for a custom delivery agent. # # * <tt>perform_deliveries</tt> - Determines whether emails are actually sent from Action Mailer when you |