Nick
Results
2
issues of
Nick
Fixed handling of binary attachment data. The UTF8 encoding is not necessary, it corrupts the data. URI escaping alone is sufficient. Added test case for same in the current unicode...
[test-utf8.txt](https://github.com/sendgrid/sendgrid-perl/files/222018/test-utf8.txt) My file attachments are corrupt because the binary data is first UTF8 encoded then URI escaped. As an example, this means a single byte 0xE4 becomes 0xC3A4 (2 bytes),...