Ilan Berci wrote: > While not knowing your problem domain at all, I have a preference for > thin dumb controllers (that fit easily within REST), I would move the > mailer down into models/ or lib/ > > hth > ilan
+1 (FWIW!) Views should be dumb, Controllers thin, and Models fat. If the deliver_ call were one line, it qualifies for the Controller. But... The delivered template is itself a View. Hence it should be dumb. Hence anything powering it belongs in the _Model_, where fat things belong. -- Phlip --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

