Skip to content

Commit

Permalink
Typo mail library
Browse files Browse the repository at this point in the history
  • Loading branch information
condor2 committed Jul 9, 2024
1 parent bfa7597 commit e31e654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/system/library/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function send(): void {
if ($this->text) {
$message .= chunk_split(base64_encode($this->text)) . $eol;
} else {
$message .= chunk_split(base64_encode($this->html)) . $eol;
$message .= chunk_split(base64_encode(strip_tags($this->html))) . $eol;
}

$message .= '--' . $boundary . '_alt' . $eol;
Expand Down

0 comments on commit e31e654

Please sign in to comment.