ZF-1945: Zend_Mail qp-encodes linefeeds
Description
When the message contains linefeeds and encoded as quoted-printable, Zend_Mail qp-encodes them as =0A. I think it would be enough just putting \r\n there.
When the message contains linefeeds and encoded as quoted-printable, Zend_Mail qp-encodes them as =0A. I think it would be enough just putting \r\n there.
Comments
Posted by Thomas Weidner (thomas) on 2007-09-15T15:08:26.000+0000
Assigned to Nico
Posted by James Dempster (letssurf) on 2008-10-06T08:49:17.000+0000
"If the data being encoded contains meaningful line breaks, they must be encoded as an ASCII CR LF sequence, not as their original byte values. Conversely if byte values 10 and 13 have meanings other than end of line then they must be encoded as =0A and =0D." http://en.wikipedia.org/wiki/Quoted-printable
This is the way quoted printable should encode new lines.