Random spaces or broken characters in html mails with a lot of content #29
Description
Hello,
we encountered an issue when sending multipart emails (html and text) with a lot of content.
There either random spaces inside the source code of the mail or broken characters because of invalid character entities.
Since things are working fine when we use the swiftmailer, we could get an idea where the error could be.
According to the RFC 2045 (search for "76"), you are doing a a hard line break instead of a soft line break after 76 characters (see Zend\Mime\Part and search for 76).
Swiftmailer is handling this 76 character limitation totally differently.
Since this is not an easy topic my thoughts are no having any kind of offense inside. My Intension is to put you into the right direction.
How can you reproduce this issue?
Send a multipart email with a lot of content in html and text.
Best regards,
Stev
[Update]
It would be cool if you could put the link to the RFC 2045 as close to the code as possible.
It took me a while to get the sense behind this "76" number when I had a look into the code.
What about this way?
'line-length' => 76, //@link** http://www.faqs.org/rfcs/rfc2045.html
Or put the "76" as constant on top and add the link as comment?