- Adapted legacy include/mail.class.php to use PHPMailer

- application/libraries/MailLib.php now set the default encoding to UTF-8
This commit is contained in:
Paolo
2026-03-12 14:04:24 +01:00
parent d33f04f3ad
commit f21d5a87b1
2 changed files with 67 additions and 72 deletions
+1
View File
@@ -55,6 +55,7 @@ class MailLib
$this->_mail->WordWrap = $this->_getEmailCfgItem('wordwrap');
$this->_mail->isHTML($this->_getEmailCfgItem('is_html')); // html or text
$this->_mail->SMTPDebug = $this->_getEmailCfgItem('enable_debug');
$this->_mail->CharSet = 'UTF-8';
// Set the configuration properties with the standard configuration values
$this->email_number_to_sent = $this->_getEmailCfgItem('email_number_to_sent');