I'm getting a NoMethodError using Rails 2.1.0 when trying to send an email using ActionMailer. The error is being thrown from the template_format method in ActionView's base.rb file. Apparently the controller.request object is an instance of DummyClass (according to the exception trace) instead of ActionController::Request, and therefore does not have any useful methods associated with it.
Right now I'm thinking that because the ActionMailer doesn't actually represent a separate request per se, that the request object is not being created correctly. Thus, when it goes to create the email using the template, it doesn't really know what format to use. Just a hunch. I'm kind of a Rails newb, so any help with this issue would be greatly appreciated. Just let me know if you need to know any other information. Michael --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

