mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-01-07 22:49:43 +01:00
Strip out carriage returns from subjects. Coses GH-209
This commit is contained in:
parent
ea9b772f35
commit
ae53c1f6c7
@ -113,7 +113,7 @@ def send_templated_mail(template_name, email_context, recipients, sender=None, b
|
|||||||
elif type(recipients) != list:
|
elif type(recipients) != list:
|
||||||
recipients = [recipients,]
|
recipients = [recipients,]
|
||||||
|
|
||||||
msg = EmailMultiAlternatives( subject_part,
|
msg = EmailMultiAlternatives( subject_part.replace('\n', ''),
|
||||||
text_part,
|
text_part,
|
||||||
sender,
|
sender,
|
||||||
recipients,
|
recipients,
|
||||||
|
Loading…
Reference in New Issue
Block a user