Hi,
I am not getting to use url helpers in a ActionMailer::Base decendent class. I have this:
class Notifier < ActionMailer::Base require 'action_view/helpers/url_helper.rb'
When I try to call url_for or link_to I get a stack overflow exception:
stack level too deep
Looking at the stack tace I realized that url_for and send are called several times in url_helper.
Anyone knows what could this be?
Thanks