We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multipart mime types are improperly parsed. By standard, the last boundary has "--" appended, which the parser doesn't account to. This produces an erroneous mime part with only "--".
MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="===============0438762424560383716==" Subject: Subject From: sender@localhost To: receiver@localhost Date: Sat, 23 Jul 2022 18:08:29 -0000 Message-Id: <165859970975.49072.13986632326735601263@localhost> --===============0438762424560383716== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Text message --===============0438762424560383716== Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 <!doctype html><html><body><b>HTML</b> message</body></html> --===============0438762424560383716==--
The above email produces 3 mime parts.
The text was updated successfully, but these errors were encountered:
Packages "net/mail" and "mime/multipart" should be used for parsing.
Sorry, something went wrong.
Looks like there is an existing pull request about this from 5 year ago.
mailhog/data#5
No branches or pull requests
Multipart mime types are improperly parsed. By standard, the last boundary has "--" appended, which the parser doesn't account to. This produces an erroneous mime part with only "--".
The above email produces 3 mime parts.
The text was updated successfully, but these errors were encountered: