This commit is contained in:
Marcus Bointon 2021-06-23 12:45:42 +02:00
parent c773286b98
commit 723455d1b7
No known key found for this signature in database
GPG Key ID: DE31CD6EB646AA24
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ require '../vendor/autoload.php';
/**
* This class demonstrates sending an already-built RFC822 message via SMTP
* by extending PHPMailer's SMTP class.
* It uses less memory that PHPMailer's usual approach because it keeps
* It uses less memory than PHPMailer's usual approach because it keeps
* the message as a single string rather than splitting its lines into
* an array, which can consume very large amounts of memory if you have
* large attachments. The downside is that it's somewhat slower.