Skip to content

Instantly share code, notes, and snippets.

@juanmhidalgo
Created March 11, 2016 19:08
Show Gist options
  • Save juanmhidalgo/662217d785cc876ea1cd to your computer and use it in GitHub Desktop.
Save juanmhidalgo/662217d785cc876ea1cd to your computer and use it in GitHub Desktop.
[django] Render template to string
from django.template.loader import render_to_string
email_body = render_to_string("my_email_template.txt", { 'name': 'Bob',
'message': 'Hello!' })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment