Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4615880
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:54:11+00:00 2026-05-22T01:54:11+00:00

I take code from Subdomain RailsCast module UrlHelper def with_subdomain(subdomain) subdomain = (subdomain ||

  • 0

I take code from Subdomain RailsCast

module UrlHelper
  def with_subdomain(subdomain)
    subdomain = (subdomain || "")
    subdomain += "." unless subdomain.empty?
    [subdomain, request.domain, request.port_string].join
  end

  def url_for(options = nil)
    if options.kind_of?(Hash) && options.has_key?(:subdomain)
      options[:host] = with_subdomain(options.delete(:subdomain))
    end
    super
  end
end

class ApplicationController < ActionController::Base
  include UrlHelper
end  

It is ok to use modified url_for in views of Controllers. But I have trouble with ActionMailer.

I tried to use following:

class Notifier < ActionMailer::Base
  include UrlHelper
end

But ActionMailer views still use old unmodified url_for from ActionDispatch::Routing::RouteSet.

What is the best practice to add new url_for

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T01:54:12+00:00Added an answer on May 22, 2026 at 1:54 am

    Add the following code to the file app/helpers/url_helper.rb:

    def set_mailer_url_options
        ActionMailer::Base.default_url_options[:host] = with_subdomain(request.subdomain)
    end
    

    and modify the file app/controllers/application_controller.rb to add:

    before_filter :set_mailer_url_options
    

    Source

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been told that every COM method callable from C++ code (take for instance
I'm using all of the below to take a field called 'code' from my
Does anyone have some code that will take a TimeZoneInfo field from .NET and
I have to take over and improve/finish some code that transforms Java objects from
Take this code: <?php if (isset($_POST['action']) && !empty($_POST['action'])) { $action = $_POST['action']; } if
Take the following demo code (from the GIO answer to this question), which uses
For example, take a look at this code (from tspl4): (define proc1 (lambda (x
Take the following rather standard code: from optparse import OptionParser opts = OptionParser() opts.add_option('-f',
Take this following code from an example HR system. The user has the ability
Take a look at this awesome code from John P Bloch. What this code

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.