mirror of
https://github.com/Hopiu/lychee.git
synced 2026-05-22 20:35:49 +00:00
Email addresses with query parameters often get used in contact forms on websites. They can also be found in other documents like Markdown. A common use-case is to add a subject line to the email as a parameter e.g. `mailto:mail@example.com?subject="Hello"`. Previously we handled such cases incorrectly by recognizing them as files. The reason was that our email parsing was too strict to allow for that use-case. With `email_address` we switched to a more permissive parser. Note that this does not affect the actual address email checking, as this is still done `check-if-email-exists`, which has more strict check functionality.
1 line
98 B
Markdown
Vendored
1 line
98 B
Markdown
Vendored
Please email [hello@example.org](mailto:hello@example.org?subject=%5BHello%5D) for any questions.
|