From ffbe1ad27f4a0d564e8562f918f7d8a945fc88fc Mon Sep 17 00:00:00 2001 From: Marcus Bointon Date: Wed, 18 Jun 2025 20:32:55 +0200 Subject: [PATCH] CS --- src/SMTP.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SMTP.php b/src/SMTP.php index 68b26f38..e6170f71 100644 --- a/src/SMTP.php +++ b/src/SMTP.php @@ -635,7 +635,8 @@ class SMTP $oauth = $OAuth->getOauth64(); /* * An SMTP command line can have a maximum length of 512 bytes, including the command name, - * so the base64-encoded OAUTH token has a maximum length of 512 - 13 (AUTH XOAUTH2) - 2 (CRLF) = 497 bytes + * so the base64-encoded OAUTH token has a maximum length of: + * 512 - 13 (AUTH XOAUTH2) - 2 (CRLF) = 497 bytes * If the token is longer than that, the command and the token must be sent separately as described in * https://www.rfc-editor.org/rfc/rfc4954#section-4 */