mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
clarify why the only_path => false option is needed when default :host has been set for mailers
This commit is contained in:
@@ -131,10 +131,10 @@ module ActionMailer #:nodoc:
|
||||
#
|
||||
# config.action_mailer.default_url_options = { :host => "example.com" }
|
||||
#
|
||||
# If you decide to set a default <tt>:host</tt> for your mailers, then you want to use the
|
||||
# <tt>:only_path => false</tt> option when using <tt>url_for</tt>. This will ensure that absolute URLs are
|
||||
# generated because the <tt>url_for</tt> view helper by default will generate relative URLs when a
|
||||
# <tt>:host</tt> option isn't explicitly provided.
|
||||
# When you decide to set a default <tt>:host</tt> for your mailers, then you need to make sure to use the
|
||||
# <tt>:only_path => false</tt> option when using <tt>url_for</tt>. Since the <tt>url_for</tt> view helper
|
||||
# will generate relative URLs by default when a <tt>:host</tt> option isn't explicitly provided, passing
|
||||
# <tt>:only_path => false</tt> will ensure that absolute URLs are generated.
|
||||
#
|
||||
# = Sending mail
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user