I'm writing a little shortcut function to basically do the same thing as direct_to_template for sending email:

from django.template import Context, loader, Template

def direct_to_email(to, subject, from_email, template_name, parameters):
    parameters = {} if parameters is None else parameters

    template = loader.get_template(template_name)
    context = Context(parameters)

    body = template.render(context)
    # ...etc.

How can I get my TEMPLATE_CONTEXT_PROCESSORS to process this, too?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

render_to_string() does that trick.

link|improve this answer
Fair enough, though I was able to make it work by passing a RequestContext as opposed to a regular context. – TK Kocheran Nov 8 '11 at 2:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.