diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index 7f2ed5ba64..7bbde53306 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -125,14 +125,13 @@ module ActionMailer #:nodoc:
# make sense to generate relative URLs in email messages.
#
# It is also possible to set a default host that will be used in all mailers by setting the :host
- # option in the ActionMailer::Base.default_url_options hash as follows:
- #
- # ActionMailer::Base.default_url_options[:host] = "example.com"
- #
- # This can also be set as a configuration option in config/application.rb:
+ # option as a configuration option in config/application.rb:
#
# config.action_mailer.default_url_options = { :host => "example.com" }
#
+ # Setting ActionMailer::Base.default_url_options directly is now deprecated, use the configuration
+ # option mentioned above to set the default host.
+ #
# If you do decide to set a default :host for your mailers you will want to use the
# :only_path => false option when using url_for. This will ensure that absolute URLs are
# generated because the url_for view helper will, by default, generate relative URLs when a