From 48090d3ea3da3505240b69ad79f249858b5132e1 Mon Sep 17 00:00:00 2001
From: Matus <sopko@its4you.sk>
Date: Thu, 23 Apr 2020 20:46:16 +0200
Subject: [PATCH] Change charset for PHPMailer to UTF-8

---
 cron/class.phpmailer.php           | 2 +-
 modules/Emails/class.phpmailer.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cron/class.phpmailer.php b/cron/class.phpmailer.php
index 12a958757..fba70242a 100755
--- a/cron/class.phpmailer.php
+++ b/cron/class.phpmailer.php
@@ -45,7 +45,7 @@ class PHPMailer
      * The character set of the message.
      * @var string
      */
-    public $CharSet = 'iso-8859-1';
+    public $CharSet = 'UTF-8';
 
     /**
      * The MIME Content-type of the message.
diff --git a/modules/Emails/class.phpmailer.php b/modules/Emails/class.phpmailer.php
index bdc699e1f..6a821ec56 100755
--- a/modules/Emails/class.phpmailer.php
+++ b/modules/Emails/class.phpmailer.php
@@ -45,7 +45,7 @@ class PHPMailer
      * The character set of the message.
      * @var string
      */
-    public $CharSet = 'iso-8859-1';
+    public $CharSet = 'UTF-8';
 
     /**
      * The MIME Content-type of the message.
-- 
GitLab