0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 01:52:15 +02:00
This commit is contained in:
Marcus Bointon 2021-02-05 10:16:39 +01:00
parent 43c7ff5644
commit b1582e23d9
No known key found for this signature in database
GPG Key ID: DE31CD6EB646AA24

View File

@ -866,7 +866,10 @@ class PHPMailer
$this->edebug("Sending with mail()\nTo: {$to}\nSubject: {$subject}\nHeaders: {$header}");
$result = @mail($to, $subject, $body, $header);
} else {
$this->edebug("Sending with mail()\nTo: {$to}\nSubject: {$subject}\nHeaders: {$header}\nAdditional params: {$params}");
$this->edebug(
"Sending with mail()\nTo: {$to}\nSubject: {$subject}\n" .
"Headers: {$header}\nAdditional params: {$params}"
);
$result = @mail($to, $subject, $body, $header, $params);
}