Django 1.11 made a change to the way text/* files are attached to a message; now it will try and decode the content into utf-8, which will bomb when this library attempts to b64encode it.
There should be a check to see if the content is unicode and then encode it to a string before b64'ing.
Django 1.11 made a change to the way text/* files are attached to a message; now it will try and decode the content into utf-8, which will bomb when this library attempts to b64encode it.
There should be a check to see if the content is unicode and then encode it to a string before b64'ing.