I haven't worked with mime encoding before, this is my first time. Sorry if you feel this question is too basic.
I am trying to generate a mime file, which later will be can pass to email clients. Currently, I am using this library to encode my content.
I am calling quotedPrintableEncode
function to encode my content.
I have run some tests and the encoder is working fine. The only concern is the speed of the encoder which is average 300ms per email on my PC. The code will be deployed on AWS-lambda, so it's not ideal to do processing in lambda functions.
Is there any better library? Is there any optimization that can be done to bring it to at least 100ms?
Feel free to ask if you have any questions. Thanks.