Skip to content

Commit

Permalink
Added SpamAssassin fix
Browse files Browse the repository at this point in the history
  • Loading branch information
condor2 committed Jul 9, 2024
1 parent aa63068 commit bfa7597
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 is a HTML email and your email client software does not support HTML email!')) . $eol;
$message .= chunk_split(base64_encode($this->html)) . $eol;
}

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

0 comments on commit bfa7597

Please sign in to comment.