I the following example:
class MyEmail(TemplatedEmailMessage):
to = ['some-user@some-email.com']
from_email = 'no-reply@some-email.com'
subject = 'Hello, {{ name }}!'
template = 'emails/template.txt'
The template attribute should be template_name, right?
I the following example:
The
templateattribute should be template_name, right?