From 724e804bcb3a49f85c9c52e93ec8141255b90a65 Mon Sep 17 00:00:00 2001 From: Manuel Gomez <34234948+lologf@users.noreply.github.com> Date: Wed, 16 Jan 2019 12:25:27 +0100 Subject: [PATCH] FIX - Fix default charset --- django_mailbox/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_mailbox/utils.py b/django_mailbox/utils.py index 2abec69..eda4f35 100644 --- a/django_mailbox/utils.py +++ b/django_mailbox/utils.py @@ -67,7 +67,7 @@ def get_settings(): 'default_charset': getattr( settings, 'DJANGO_MAILBOX_DEFAULT_CHARSET', - 'iso8859-1', + 'utf8', ) }