Skip to content

Commit

Permalink
fix: correct property default values
Browse files Browse the repository at this point in the history
Make them the same as in the Config\Email.
  • Loading branch information
kenjis committed May 5, 2024
1 parent fd9cb65 commit 88eebb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions system/Email/Email.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class Email
*
* @var string
*/
public $charset = 'utf-8';
public $charset = 'UTF-8';

/**
* Alternative message (for HTML messages only)
Expand Down Expand Up @@ -182,7 +182,7 @@ class Email
*
* @var string "\r\n" or "\n"
*/
public $newline = "\n";
public $newline = "\r\n";

/**
* CRLF character sequence
Expand All @@ -197,7 +197,7 @@ class Email
*
* @var string
*/
public $CRLF = "\n";
public $CRLF = "\r\n";

/**
* Whether to use Delivery Status Notification.
Expand Down

0 comments on commit 88eebb5

Please sign in to comment.