vote up 0 vote down star

I'm generating emails based off embedded NVelocity templates and would like to do something with dynamically included sections. So my embedded resources are something like this:

DigestMail.vm _Document.vm _ActionItem.vm _Event.vm

My email routine will get a list of objects and will pass each of these along with the proper view to DigestMail.vm:

public struct ItemAndView
{
    public string View;
    public object Item;

}

private void GenerateWeeklyEmail(INewItems[] newestItems)
{
    IList<ItemAndView> itemAndViews = new List<ItemAndView>();
    foreach (var item in newestItems)
    {
        itemAndViews.Add(new ItemAndView
        {
            View = string.Format("MyAssembly.MailTemplates._{0}.vm", item.GetType().Name),
            Item = item
        });
    }

    var context = new Dictionary<string, object>();
    context["Recipient"] = _user;
    context["Items"] = itemAndViews;

    string mailBody = _templater.Merge("MyAssembly.MailTemplates.DigestMail.vm", context);
}

And in my DigestMail.vm template I've got something like this:

#foreach($Item in $Items)
====================================================================
#parse($Item.viewname)
#end

But it's unable to #parse when given the path to an embedded resource like this. Is there any way I can tell it to parse each of these embedded templates?

flag

70% accept rate

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.