mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-05-30 14:38:54 +02:00
Merge pull request #227 from brente/master
fix setting import (fixes CI error)
This commit is contained in:
commit
21e46f010d
@ -54,6 +54,7 @@ def send_templated_mail(template_name, email_context, recipients, sender=None, b
|
|||||||
from django.template import loader, Context
|
from django.template import loader, Context
|
||||||
|
|
||||||
from helpdesk.models import EmailTemplate
|
from helpdesk.models import EmailTemplate
|
||||||
|
from helpdesk.settings import HELPDESK_EMAIL_SUBJECT_TEMPLATE
|
||||||
import os
|
import os
|
||||||
|
|
||||||
context = Context(email_context)
|
context = Context(email_context)
|
||||||
@ -104,7 +105,7 @@ def send_templated_mail(template_name, email_context, recipients, sender=None, b
|
|||||||
).render(context)
|
).render(context)
|
||||||
|
|
||||||
subject_part = loader.get_template_from_string(
|
subject_part = loader.get_template_from_string(
|
||||||
settings.HELPDESK_EMAIL_SUBJECT_TEMPLATE % {
|
HELPDESK_EMAIL_SUBJECT_TEMPLATE % {
|
||||||
"subject": t.subject,
|
"subject": t.subject,
|
||||||
}).render(context)
|
}).render(context)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user