I'm writing an MVC view which will be sent as an HTML email. Since many mail clients don't render external CSS stylesheets, I need to include them inline. Since I'm already using Combres to combine and minify my stylesheets on the main site, I want to use it to insert the styles into my email view.
I could use Html.CombresLink("siteCss")
to render a <link>
to the minified stylesheet, but how do I render the actual CSS inline instead?