Hi folks, Stackoverflow has taught me so much about what proper RESTful, MVC, GET/POST is that I am wondering how people learn to program/engineer in the past before Stackoverflow existed. ;)
Given that, here is another question on how I can do a (fairly) common procedure in the most appropriate way.
I need to generate a HTML from a view template to be used in a controller action. In that sense, it is kind of like ActiveMailer.
- HTML template in a .html.erb file
- Controller action with the params
- Get the HTML from the template to use in the controller
What is the best way to that? Pseudo code will be very much appreciated, thanks!