Hi I'm trying to use actionmailer standalone in a WCF service and everything works according to plan when it comes to substituting data using Model.XXX.
The problem starts when I try parsing templates using @Html
I receive : Unable to compile template. The name 'Html' does not exist in the current context
example template the works:
Hello @Model.Name
template failing
Hello @Model.Name
@Html.CheckBox("test")
So how can HtmlHelpers be used with actionmailer in a standalone scenario?