From 88eebb5f035e7dead3b612d6e637a0068c9d08b9 Mon Sep 17 00:00:00 2001 From: kenjis Date: Sun, 5 May 2024 17:53:09 +0900 Subject: [PATCH] fix: correct property default values Make them the same as in the Config\Email. --- system/Email/Email.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/Email/Email.php b/system/Email/Email.php index a686ca0ca06e..b82779eb891d 100644 --- a/system/Email/Email.php +++ b/system/Email/Email.php @@ -151,7 +151,7 @@ class Email * * @var string */ - public $charset = 'utf-8'; + public $charset = 'UTF-8'; /** * Alternative message (for HTML messages only) @@ -182,7 +182,7 @@ class Email * * @var string "\r\n" or "\n" */ - public $newline = "\n"; + public $newline = "\r\n"; /** * CRLF character sequence @@ -197,7 +197,7 @@ class Email * * @var string */ - public $CRLF = "\n"; + public $CRLF = "\r\n"; /** * Whether to use Delivery Status Notification.