sendgrid-perl
sendgrid-perl copied to clipboard
Perl module for SendGrid's API
Update the Email::SendGrid::Transport::Rest module to make a POST request rather than a GET request. With a GET request the data is put into the query string causing large requests to...
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),...
When attaching multiple files, I get this error when sending: 414 Request-URI Too Large. Looking into the code, it looks like most of the data is urlencoded. According to the...
I'm trying to attach files using the code from the example on this site. The attachments go through correctly if the attachment is an image or a text file, but...
I just spent a little time figuring out how to do what SendGrid calls "substitutions", which isn't in the POD. If you put template objects into your 'html' value in...