The context variables are being lost when templates that extend _base_email.html are rendered. Instead of inheriting from a base email, it may be simplest to just copy the required bits from _base_email to every template. That way, the context variables won't be lost.
The context variables are being lost when templates that extend
_base_email.html
are rendered. Instead of inheriting from a base email, it may be simplest to just copy the required bits from_base_email
to every template. That way, the context variables won't be lost.