πŸ‡―πŸ‡΅Japan @wakaiakari

Account created on 17 December 2021, over 3 years ago
#

Recent comments

πŸ‡―πŸ‡΅Japan wakaiakari

The name part of the email address is encoded by Symfony\Component\Mime\Encoder\QpEncoder->encodeString().
When the name is `θΏ™ζ˜―δΈ€δΈͺ桋试网站`, the string tested against `SendGridMail::SENDGRID_INTEGRATION_EMAIL_REGEX` is not
`θΏ™ζ˜―δΈ€δΈͺ桋试网站 ` but rather `=?utf-8?Q?=E8=BF=99=E6=98=AF=E4=B8=80=E4=B8=AA?=\r\n =?utf-8?Q?=E6=B5=8B=E8=AF=95=E7=BD=91=E7=AB=99?= `.

Because the name part contains `\r\n`, the email address cannot be split into name and address using SENDGRID_INTEGRATION_EMAIL_REGEX.
As a result, unexpected characters are included in the address, causing it to fail to match FILTER_VALIDATE_EMAIL and resulting in an error.

Production build 0.71.5 2024