Sometimes it is comfortable to use view helpers in controller methods to customize things like pluralisation, links, mailto´s, etc . Rails provides a lot of view helpers, which can be used in controllers or normal helpers. In Rails 3 it is possible to call view_context inside a controller. This call will create a new ActionView instance for a controller, then all view helper methods will be available through this instance and you can simple do stuff like this:
…