There's a reference on javax.mail in this project. As I see, the only imported functionality is
javax.mail.internet.MimeUtility that's used for Base64 encoding.
Would it be possible to use apache commons-codec instead?
http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Base64.html
It's only 57k and seems to be more appropriate in this situation
There's a reference on javax.mail in this project. As I see, the only imported functionality is
javax.mail.internet.MimeUtility that's used for Base64 encoding.
Would it be possible to use apache commons-codec instead?
http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Base64.html
It's only 57k and seems to be more appropriate in this situation