Skip to content

Commit

Permalink
Merge pull request #8855 from kenjis/fix-Email-default-values
Browse files Browse the repository at this point in the history
fix: correct property default values in Email
  • Loading branch information
kenjis authored May 10, 2024
2 parents 581eb85 + 88eebb5 commit 6ceb3e5
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 6ceb3e5

Please sign in to comment.